-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
60 lines (60 loc) · 1.78 KB
/
.eslintrc.js
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
module.exports = {
parser: '@typescript-eslint/parser',
extends: [
'plugin:@typescript-eslint/recommended', // Asegúrate de tener instalado @typescript-eslint/eslint-plugin
'plugin:prettier/recommended', // Esto incluye eslint-plugin-prettier y eslint-config-prettier
],
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
},
env: {
es6: true,
node: true,
},
rules: {
'comma-dangle': ['error', 'always-multiline'],
indent: ['error', 2, { SwitchCase: 1 }],
'no-case-declarations': 'error',
'no-console': 'off',
'no-debugger': 'off',
'no-dupe-keys': 'error',
'no-extend-native': 'error',
'no-extra-semi': 'error',
'no-implicit-coercion': 'error',
'no-implicit-globals': 'error',
'no-multi-spaces': 'error',
'no-multiple-empty-lines': 'error',
'no-process-exit': 'error',
'no-shadow': 'error',
'no-throw-literal': 'error',
'no-trailing-spaces': 'error',
'no-unreachable': 'error',
'no-unsafe-optional-chaining': 'error',
'no-unused-expressions': 'error',
'no-unused-vars': 'error',
'no-use-before-define': 'error',
'no-useless-return': 'error',
'no-var': 'error',
'no-void': 'error',
'no-warning-comments': 'error',
'no-with': 'error',
// 'one-var': 'error',
'prefer-const': 'error',
'prefer-destructuring': ['error', { array: true, object: true }],
'prefer-template': 'error',
quotes: ['error', 'single'],
// radix: 'error',
semi: ['error', 'always'],
'sort-imports': 'error',
'sort-keys': 'error',
'space-in-parens': 'error',
'spaced-comment': 'error',
strict: 'error',
'use-isnan': 'error',
'valid-jsdoc': 'error',
'valid-typeof': 'error',
'wrap-iife': 'error',
'yield-star-spacing': 'error',
},
};