-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
64 lines (64 loc) · 1.82 KB
/
.eslintrc.cjs
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* eslint-env node */
module.exports = {
env: { browser: true, node: true, jest: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:@typescript-eslint/strict',
'plugin:prettier/recommended'
],
ignorePatterns: [
'*.js',
'*.test.ts',
'*.spec.ts',
'*.d.ts',
'dist/',
'node_modules/'
],
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: __dirname
},
plugins: ['@typescript-eslint', 'prettier'],
rules: {
'no-console': 'error',
// Desabilitamos regras de formatação que conflitam com o Prettier
// 'indent': ['error', 2, { SwitchCase: 1 }],
indent: 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
args: 'all',
argsIgnorePattern: '^_',
caughtErrors: 'all',
caughtErrorsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^_',
varsIgnorePattern: '^_',
ignoreRestSiblings: true
}
],
// Regras do Prettier
'prettier/prettier': 'error',
// Outras regras...
// Desabilitamos as seguintes regras de formatação para evitar conflitos
semi: 'off',
'comma-dangle': 'off',
quotes: 'off',
'no-multiple-empty-lines': 'off',
eqeqeq: 'off',
strict: 'error',
'@typescript-eslint/no-misused-promises': [
'error',
{ checksVoidReturn: false }
],
'@typescript-eslint/prefer-readonly': 'error',
'@typescript-eslint/array-type': 'off',
'@typescript-eslint/method-signature-style': ['error', 'property'],
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-assignment': 'off'
},
root: true
}