-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
133 lines (129 loc) · 4.43 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// Based on https://medium.com/@jodavid/configure-eslint-with-typescript-prettier-and-vue-js-3-902aae3d1440
module.exports = {
root: true,
env: {
browser: true,
node: true,
},
globals: { NodeJS: true, Timer: true },
parser: 'vue-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser',
},
extends: [
'eslint:recommended',
'plugin:vue/recommended',
'plugin:@typescript-eslint/recommended',
// '@vue/eslint-config-typescript/recommended', or '@nuxtjs/eslint-config-typescript',
// Note: When ^ is enabled the linting e.g. no-undef on .vue files does not work
'plugin:cypress/recommended',
'@vue/eslint-config-prettier',
'prettier',
],
plugins: ['@typescript-eslint', 'prettier'], // https://github.com/prettier/eslint-plugin-prettier#recommended-configuration
// add your custom rules here
rules: {
'prettier/prettier': 'error',
'arrow-body-style': 'off',
'prefer-arrow-callback': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
// rules: {
// 'dot-notation': 'off',
// 'generator-star-spacing': 'off',
// 'guard-for-in': 'off',
// 'linebreak-style': 'off',
// 'new-cap': 'off',
// 'no-empty': 'off',
// 'no-extra-boolean-cast': 'off',
// 'no-new': 'off',
// 'no-plusplus': 'off',
// 'no-useless-escape': 'off',
// 'nuxt/no-cjs-in-config': 'off',
// 'semi-spacing': 'off',
// 'space-in-parens': 'off',
// strict: 'off',
// 'unicorn/no-new-buffer': 'off',
// 'vue/html-self-closing': 'off',
// 'vue/no-unused-components': 'warn',
// 'vue/no-v-html': 'error',
// 'wrap-iife': 'off',
// 'array-bracket-spacing': 'warn',
// 'arrow-parens': 'warn',
// 'arrow-spacing': ['warn', { before: true, after: true }],
// 'block-spacing': ['warn', 'always'],
// 'brace-style': ['warn', '1tbs'],
// 'comma-dangle': ['warn', 'only-multiline'],
// 'comma-spacing': 'warn',
// curly: 'warn',
// eqeqeq: 'warn',
// 'func-call-spacing': ['warn', 'never'],
// 'implicit-arrow-linebreak': 'warn',
// indent: ['warn', 2],
// 'keyword-spacing': 'warn',
// 'lines-between-class-members': ['warn', 'always', { exceptAfterSingleLine: true }],
// 'multiline-ternary': ['warn', 'never'],
// 'newline-per-chained-call': ['warn', { ignoreChainWithDepth: 4 }],
// 'no-caller': 'warn',
// 'no-cond-assign': ['warn', 'except-parens'],
// 'no-console': 'warn',
// 'no-debugger': 'warn',
// 'no-eq-null': 'warn',
// 'no-eval': 'warn',
// 'no-trailing-spaces': 'warn',
// 'no-undef': 'warn',
// 'no-unused-vars': 'warn',
// 'no-whitespace-before-property': 'warn',
// 'object-curly-spacing': ['warn', 'always'],
// 'object-property-newline': 'warn',
// 'object-shorthand': 'warn',
// 'padded-blocks': ['warn', 'never'],
// 'prefer-arrow-callback': 'warn',
// 'prefer-template': 'warn',
// 'quote-props': 'warn',
// 'rest-spread-spacing': 'warn',
// semi: ['warn', 'always'],
// 'space-before-function-paren': ['warn', 'never'],
// 'space-infix-ops': 'warn',
// 'spaced-comment': 'warn',
// 'switch-colon-spacing': 'warn',
// 'template-curly-spacing': ['warn', 'always'],
// 'yield-star-spacing': ['warn', 'both'],
// quotes: [
// 'warn',
// 'single',
// {
// avoidEscape: true,
// allowTemplateLiterals: true,
// },
// ],
// 'space-unary-ops': [
// 'warn',
// {
// words: true,
// nonwords: false,
// },
// ],
// // FIXME: The following is disabled due to new linter and old JS code. These should all be enabled and underlying issues fixed
// 'vue/order-in-components': 'off',
// 'vue/no-lone-template': 'off',
// 'vue/v-slot-style': 'off',
// 'vue/component-tags-order': 'off',
// 'vue/no-mutating-props': 'off',
// '@typescript-eslint/no-unused-vars': 'off',
// 'array-callback-return': 'off',
// },
// overrides: [
// {
// files: ['*.js'],
// rules: {
// // FIXME: The following is disabled due to new linter and old JS code. These should all be enabled and underlying issues fixed
// 'prefer-regex-literals': 'off',
// 'vue/component-definition-name-casing': 'off',
// 'no-unreachable-loop': 'off',
// 'computed-property-spacing': 'off',
// },
// },
// ],
};