@alanscodelog/eslint-config
v5.0.3
Published
My eslint config.
Downloads
160
Readme
My preferred base eslint configs along with an "install" script for quickly setting up the configs to extend from this one.
Install
npm add -D @alanscodelog/eslint-config eslint
Run the install script (this will overwrite eslint.config.js
).
./node_modules/@alanscodelog/eslint-config/install.sh
Manual Config Setup
Simple:
// eslint.config.js
import config from "@alanscodelog/eslint-config"
export default config
Advanced:
import { allFileTypes, tsEslintConfig, vueConfig } from "@alanscodelog/eslint-config"
export default tsEslintConfig( // this is just a re-export of tsEslint.config
// https://github.com/AlansCodeLog/eslint-config
...vueConfig,
{
files: [`**/*.{${allFileTypes.join(",")}}`],
ignores: [
// ...
],
},
// RULE LINKS
// Eslint: https://eslint.org/docs/rules/
// Typescript: https://typescript-eslint.io/rules/
// Vue: https://eslint.vuejs.org/rules/
)
package.json
Add linting script to package.json
:
{
"scripts": {
// bin only if it has scripts, not for "dist" folder of cli
// double quotes escaped to avoid shell expanding globs which causes problems
// *.{cjs,js,ts} so configs at root will be linted
"lint:eslint": "eslint \"{src,tests,bin}/**/*.{cjs,js,ts}\" \"*.{cjs,js,ts}\" --max-warnings=0 --report-unused-disable-directives",
}
}
Configs
There's 4 configs: base, js, typescript, vue.
Each sets it's rules with the file types they can apply to. So the base example applies to all, and it gets more selective as we go all the way up to vue.
Other
All rules are set to warn since I don't like the editor bleeding red. I pass --max-warnings=0
to eslint when needed instead. Personally, a rule is either useful (in general, I might still ignore them) and code should pass all lints, or it's not and the rule should be disabled.