@stackla/eslint-config
v1.0.0
Published
Base eslint config
Readme
eslint-config
Usage:
Create a .eslintrc.js with the following content
module.exports = {
extends: ['@stackla/eslint-config'],
parserOptions: {
project: path.resolve(__dirname, 'tsconfig.json'),
},
settings: {
'import/resolver': {
typescript: {
project: path.resolve(__dirname, 'tsconfig.json'),
},
},
},
ignorePatterns: ['!.*', 'dist', 'node_modules'],
};