47 lines
1.4 KiB
JavaScript
47 lines
1.4 KiB
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
es6: true,
|
||
|
node: true,
|
||
|
},
|
||
|
|
||
|
plugins: ['import'],
|
||
|
extends: [
|
||
|
'eslint:recommended',
|
||
|
'plugin:import/errors',
|
||
|
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
|
||
|
'plugin:prettier/recommended', // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
|
||
|
],
|
||
|
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
|
||
|
sourceType: 'module', // Allows for the use of imports
|
||
|
},
|
||
|
|
||
|
settings: {
|
||
|
'import/parsers': {
|
||
|
'@typescript-eslint/parser': ['.ts', '.tsx'],
|
||
|
},
|
||
|
'import/resolver': {
|
||
|
// use <root>/tsconfig.json
|
||
|
typescript: {
|
||
|
alwaysTryTypes: true, // always try to resolve types under `<roo/>@types` directory even it doesn't contain any source code, like `@types/unist`
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
|
||
|
ignorePatterns: ['**/generated/**/*', '**/build/**/*'],
|
||
|
|
||
|
rules: {
|
||
|
quotes: ['error', 'single'],
|
||
|
'import/no-unresolved': 2,
|
||
|
'no-undef': 2,
|
||
|
'prefer-const': 0,
|
||
|
semi: ['error', 'always'],
|
||
|
'no-console': 0,
|
||
|
'@typescript-eslint/explicit-member-accessibility': 0,
|
||
|
'@typescript-eslint/camelcase': 0,
|
||
|
'@typescript-eslint/class-name-casing': 0,
|
||
|
'@typescript-eslint/no-var-requires': 0,
|
||
|
},
|
||
|
};
|