forked from jamessimone/apex-rollup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
90 lines (90 loc) · 2.74 KB
/
.eslintrc.json
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
{
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false,
"babelOptions": {
"parserOpts": {
"plugins": ["classProperties", ["decorators", { "decoratorsBeforeExport": false }]]
}
}
},
"ignorePatterns": ["**/*.html", "**/*.css", "**/*js-meta.xml", "**/*.json"],
"plugins": ["@lwc/eslint-plugin-lwc"],
"rules": {
"@lwc/lwc/consistent-component-name": "error",
"@lwc/lwc/no-api-reassignments": "off",
"@lwc/lwc/no-async-operation": "error",
"@lwc/lwc/no-attributes-during-construction": "error",
"@lwc/lwc/no-deprecated": "error",
"@lwc/lwc/no-document-query": "error",
"@lwc/lwc/no-dupe-class-members": "error",
"@lwc/lwc/no-inner-html": "error",
"@lwc/lwc/no-leading-uppercase-api-name": "error",
"@lwc/lwc/prefer-custom-event": "error",
"@lwc/lwc/valid-api": [
"error",
{
"disallowUnderscoreUppercaseMix": true
}
],
"array-callback-return": "error",
"consistent-return": "error",
"default-case": "error",
"dot-notation": "error",
"eqeqeq": ["error", "smart"],
"guard-for-in": "error",
"handle-callback-err": "error",
"no-alert": "error",
"no-await-in-loop": "error",
"no-caller": "error",
"no-confusing-arrow": "error",
"no-console": "warn",
"no-else-return": "error",
"no-eval": "error",
"no-extend-native": "error",
"no-extra-bind": "error",
"no-implicit-coercion": "error",
"no-empty-function": [
"error",
{
"allow": ["arrowFunctions", "functions", "methods"]
}
],
"no-floating-decimal": "error",
"no-implied-eval": "error",
"no-iterator": "error",
"no-label-var": "error",
"no-labels": "error",
"no-loop-func": "error",
"no-multi-str": "error",
"no-new-func": "error",
"no-new-object": "error",
"no-new-wrappers": "error",
"no-new": "error",
"no-octal-escape": "error",
"no-proto": "error",
"no-return-assign": "error",
"no-return-await": "error",
"no-script-url": "error",
"no-self-compare": "error",
"no-sequences": "error",
"no-shadow-restricted-names": "error",
"no-shadow": "error",
"no-throw-literal": "error",
"no-undef-init": "error",
"no-unused-expressions": "error",
"no-unused-vars": ["error", { "vars": "all", "args": "after-used" }],
"no-use-before-define": ["error", { "functions": false }],
"no-useless-computed-key": "error",
"no-useless-concat": "error",
"no-useless-constructor": "error",
"no-useless-escape": "error",
"no-useless-rename": "error",
"no-useless-return": "error",
"no-void": "error",
"no-with": "error",
"radix": "error",
"vars-on-top": "error",
"wrap-iife": ["error", "any"]
}
}