Data pipeline ESLint configuration.
npm install --save-dev eslint eslint-config-datapipeline
There exist two configs, the main one(index.js
) for frontend development, and
another (node.js
) for Node.js projects or Node.js scripts.
You can add the extends to your .eslintrc
:
{
"extends": "datapipeline",
"rules": {
// your overrides
}
}
Or
{
"extends": "datapipeline/node",
"rules": {
// your overrides
}
}
MIT