eslint-config-astrohelm
v2.2.0
Published
Astrohelm ESLint rule set configuration
Downloads
92
Maintainers
Readme
1. Install required packages:
npm i -D eslint eslint-config-astrohelm
2. Import eslint-config-astrohelm
in eslint.config.js
'use strict';
const configAstrohelm = require('eslint-config-astrohelm');
module.exports = configAstrohelm; // or if you want to custom:
// module.exports = [...configAstrohelm, config];
3. (optional) Add following scripts
// package.json
{
"scripts": {
"lint": "eslint ."
//...
}
//...
}