1.1.2 • Published 1 week ago
@cockroachlabs/eslint-config
Licence
MIT
Version
1.1.2
Deps
8
Size
6 kB
Vulns
0
Weekly
0
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.xversion of Eslint to support plugins that don't support9.xversion.
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.
}
];