-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.eslintrc.js
60 lines (57 loc) · 1.98 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 = {
root: true,
env: {
es6: true,
browser: true,
node: true
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
'plugin:vue/recommended',
'standard',
// TODO возможно не нужен
'plugin:promise/recommended',
// TODO вызывает ошибку в root элемента template (конфликтует с vue)
// 'typescript'
// 'plugin:@typescript-eslint/recommended'
],
// required to lint *.vue files
plugins: [
'vue',
// 'babel', это eslint-plugin-babel (не работают)
// TODO не уверен что хоть что-то делает
// 'typescript'
'@typescript-eslint',
'@typescript-eslint/tslint'
],
rules: {
// когда импортировал и использовал интерефейсы, выдавало такую ошибку https://github.com/eslint/typescript-eslint-parser/issues/77
'no-unused-vars': 'off',
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
// eslint-plugin-babel (не работают)
// "babel/camelcase": 1,
// "babel/no-unused-expressions": 2,
// Vue
'vue/no-v-html': 'off',
// '@typescript-eslint/tslint/config': [1, {
// lintFile: './tslint.json',
// }],
},
parser: 'vue-eslint-parser', // babel-eslint чтобы optional chaining работало, без этого не работает
parserOptions: {
parser: "@typescript-eslint/parser",
// parser: '@typescript-eslint/parser',
project: "./tsconfig.json",
// parser: 'babel-eslint',
sourceType: 'module',
// useJSXTextNode: true,
ecmaFeature: {
jsx: false
},
// 9 это 2018
// ecmaVersion: 9,
extraFileExtensions: ['.vue'],
}
}