csabbee-eslint-config
v1.0.3
Published
The eslint style config the way I like it
Downloads
6
Readme
Eslint config
This package was created so I don't have to copy paste my eslint config from one repository to the other. It is publicly available on npm: https://www.npmjs.com/package/csabbee-eslint-config
How to use it
Not much to it really, for the ease of use, you would need at least I believe [email protected]
That's when they introduced the flat config structure, so using the config would be this:
eslint.config.js:
import baseConfig from 'csabbee-eslint-config/eslint-config.js'
export default [
...baseConfig
]
Following the new eslint way, you could override any of the rules e.g.:
import baseConfig from 'csabbee-eslint-config/eslint-config.js'
export default [
...baseConfig,
{
'@stylistic/quotes': ['error', 'double'],
},
]