@koorosh/eslint-config
v1.0.8
Published
Shared eslint config for Cockroach Labs.
Downloads
2
Readme
About
eslint-config
package includes Eslint configuration which is inherited from CC Console and can/should be used
as a basis for other projects (ie Db Console).
Restrictions
- package relies on
8.x
version of Eslint to support plugins that don't support9.x
version.
How to use
- Eslint config should be defined as
eslint.config.js
(doesn't support old configuration version with.eslintrc.json
)
const crlEslint = require("@cockroachlabs/eslint-config");
module.exports = [
...crlEslint.configs.all,
{
// custom per project config.
}
];