forked from subscriptions-project/scenic-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
119 lines (119 loc) · 2.88 KB
/
.eslintrc
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
{
"root": true,
"parser": "babel-eslint",
"plugins": [
"swg-internal",
"google-camelcase",
"prettier",
"sort-imports-es6-autofix",
"sort-requires"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"amd": true,
"es6": true,
"browser": true
},
"globals": {
"it": false,
"chai": false,
"expect": false,
"describe": false,
"beforeEach": false,
"afterEach": false,
"before": false,
"after": false,
"SUBSCRIPTIONS": false,
"SWG": false,
"assert": false,
"sinon": true,
"sandbox": true,
"context": false,
"global": false,
"describes": true
},
"rules": {
"swg-internal/dict-string-keys": 2,
"swg-internal/enforce-private-props": 2,
"swg-internal/no-array-destructuring": 2,
"swg-internal/no-es2015-number-props": 2,
"swg-internal/no-export-side-effect": 2,
"swg-internal/no-for-of-statement": 2,
"swg-internal/no-global": 0,
"swg-internal/no-spread": 2,
"swg-internal/todo-format": 0,
"curly": 2,
"google-camelcase/google-camelcase": 2,
"no-alert": 2,
"no-cond-assign": 2,
"no-debugger": 2,
"no-div-regex": 2,
"no-dupe-keys": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-extra-bind": 2,
"no-implicit-coercion": [2, { "boolean": false }],
"no-implied-eval": 2,
"no-iterator": 2,
"no-lone-blocks": 2,
"no-native-reassign": 2,
"no-redeclare": 2,
"no-restricted-globals": [2, "error", "event"],
"no-script-url": 2,
"no-self-compare": 2,
"no-sequences": 2,
"no-throw-literal": 2,
"no-unused-expressions": 0,
"no-unused-vars": [2, {
"argsIgnorePattern": "^var_|unused",
"varsIgnorePattern": "Def|Interface$"
}],
"no-useless-call": 2,
"no-useless-concat": 2,
"no-undef": 2,
"no-var": 2,
"no-warning-comments": [2, { "terms": ["do not submit"], "location": "anywhere" }],
"object-curly-spacing": [2, "never", {
"objectsInObjects": false,
"arraysInObjects": false
}],
"object-shorthand": [2, "properties", { "avoidQuotes": true }],
"prefer-const": 2,
"prettier/prettier": 2,
"radix": 2,
"sort-imports-es6-autofix/sort-imports-es6": [2, {
"ignoreCase": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"]
}],
"sort-requires/sort-requires": 2
},
"overrides": [
{
"files": ["assets/i18n/strings/*.js"],
"globals": {
"__dirname": false,
"require": false
},
"rules": {
"swg-internal/no-for-of-statement": 0
}
},
{
"files": ["test/e2e/*.js", "test/e2e/**/*.js"],
"globals": {
"module": false,
"require": false
}
},
{
"files": ["src/**/*test.js"],
"rules": {
"swg-internal/no-for-of-statement": 0
}
}
]
}