-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.eslintrc.js
More file actions
42 lines (40 loc) · 1.29 KB
/
.eslintrc.js
File metadata and controls
42 lines (40 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
module.exports = {
parser: '@typescript-eslint/parser',
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
plugins: ['@typescript-eslint'],
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
},
env: {
browser: true,
es6: true,
node: true,
},
rules: {
// Relax some rules for alpha release
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
ignoreRestSiblings: true,
},
],
'@typescript-eslint/no-explicit-any': 'warn', // Change from error to warning
'no-console': 'warn', // Allow console for debugging in alpha
'no-case-declarations': 'off', // Disable this rule temporarily
'no-self-assign': 'error', // Keep this as it's a real bug
'no-useless-escape': 'warn', // Change to warning
// TypeScript specific
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-non-null-assertion': 'warn',
// General code quality
'prefer-const': 'error',
'no-var': 'error',
eqeqeq: 'error',
},
ignorePatterns: ['dist/', 'node_modules/', '--help/', '*.js'],
};