@min5407/eslint-config
v1.0.27
Published
Min5407's Custom eslint
Downloads
28
Maintainers
Readme
@min5407/eslint-config
This is a custom eslint config which supports typescript by default
Authors
Documentation
Installation
how to install
npm install -D @min5407/eslint-config
How to Use
.eslintrc.js
module.exports = {
root: true,
extends: ['@min5407/eslint-config'],
ignorePatterns: ['**/*.json', 'node_modules', ...etc],
parserOptions: {
root: true,
tsconfigRootDir: __dirname,
project: ['./tsconfig.json'],
},
};
tsconfig.json
{
"include": [".eslintrc.js", ...etc],
}