-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
73 lines (70 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
61
62
63
64
65
66
67
68
69
70
71
72
73
module.exports = {
env: {
es6: true,
browser: true,
},
extends: [
'airbnb-base',
'plugin:jsdoc/recommended',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
rules: {
'no-console': 0,
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'import/no-useless-path-segments': 0,
'import/extensions': [
'.js',
'.mjs',
'.jsx',
'.vue',
],
'max-len': [ 'error', {
code: 200,
ignoreComments: true,
ignoreStrings: true, // ignores lines that contain a double-quoted or single-quoted string
ignoreTemplateLiterals: true, // ignores lines that contain a template literal
ignoreRegExpLiterals: true,
} ],
'arrow-parens': 0,
'array-bracket-spacing': [ 2, 'always' ],
'no-underscore-dangle': 0,
// jsdoc rules
// https://github.com/gajus/eslint-plugin-jsdoc#readme
"jsdoc/check-tag-names": [
1,
{
'definedTags': [
// Document This VS code extension adds this as it is a valid Closure tag https://github.com/google/closure-compiler/wiki/Annotating-JavaScript-for-the-Closure-Compiler
'export'
]
}
],
},
settings: {
jsdoc: {
tagNamePreference: {
'prop': {
'replacement': 'prop'
},
'property': {
'replacement': 'prop',
"message": "Use `prop` instead of `property` and save some keystrokes."
},
'extends': {
'replacement': 'extends'
},
'augments': {
'replacement': 'extends',
"message": "Use `extends` instead of `augments` because its easier to understand."
},
},
}
}
};