-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
20 lines (20 loc) · 969 Bytes
/
.eslintrc.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: { project: './tsconfig.json' },
env: { es6: true },
ignorePatterns: ['node_modules', 'build', 'dist', 'lib', 'coverage', '*.js', '**/__tests__/*'],
plugins: ['import', 'eslint-comments', '@typescript-eslint'],
extends: ['plugin:eslint-comments/recommended', 'plugin:import/typescript', 'prettier'],
globals: { BigInt: true, console: true, WebAssembly: true },
rules: {
'no-shadow': 'off',
'@typescript-eslint/no-shadow': 'warn',
'eslint-comments/no-unlimited-disable': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'eslint-comments/disable-enable-pair': ['error', { allowWholeFile: true }],
'eslint-comments/no-unused-disable': 'error',
'import/order': ['error', { 'newlines-between': 'always', alphabetize: { order: 'asc' } }],
'sort-imports': ['error', { ignoreDeclarationSort: true, ignoreCase: true }],
},
};