Skip to content

Commit 4c6dfdb

Browse files
committed
Upgrade dev dependencies to reduce security warnings.
1 parent 18ecae9 commit 4c6dfdb

File tree

6 files changed

+3956
-2246
lines changed

6 files changed

+3956
-2246
lines changed

.eslintrc.json

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
{
2+
"rules": {
3+
"babel/object-curly-spacing": 2,
4+
"brace-style": [2, "1tbs", {"allowSingleLine": false}],
5+
"camelcase": [2],
6+
"comma-dangle": [2, "always-multiline"],
7+
"comma-spacing": [2],
8+
"curly": [2, "all"],
9+
"dot-notation": [2],
10+
"eol-last": [2],
11+
"eqeqeq": [2],
12+
"handle-callback-err": [2],
13+
"import/export": [2],
14+
"import/imports-first": [2],
15+
"import/named": [2],
16+
"import/namespace": [2, {"allowComputed": true}],
17+
"import/newline-after-import": [2],
18+
"import/no-duplicates": [2],
19+
"import/no-mutable-exports": [2],
20+
"import/no-named-as-default": [2],
21+
"import/no-named-as-default-member": [2],
22+
"import/no-unresolved": [2, {"commonjs": true}],
23+
"import/order": [2],
24+
"import/prefer-default-export": [2],
25+
"indent": [2, 4],
26+
"keyword-spacing": [2],
27+
"new-cap": [2],
28+
"new-parens": [2],
29+
"no-alert": [2],
30+
"no-caller": [2],
31+
"no-const-assign": [2],
32+
"no-constant-condition": [2],
33+
"no-dupe-args": [2],
34+
"no-dupe-keys": [2],
35+
"no-empty": [2],
36+
"no-empty-character-class": [2],
37+
"no-eval": [2],
38+
"no-irregular-whitespace": [2],
39+
"no-labels": [2],
40+
"no-lonely-if": [2],
41+
"no-multiple-empty-lines": [2],
42+
"no-new": [2],
43+
"no-octal": [2],
44+
"no-proto": [2],
45+
"no-redeclare": [2],
46+
"no-return-assign": [2],
47+
"no-self-assign": [2],
48+
"no-self-compare": [2],
49+
"no-shadow": [2],
50+
"no-shadow-restricted-names": [2],
51+
"no-sparse-arrays": [2],
52+
"no-undef": [2],
53+
"no-unreachable": [2],
54+
"no-unused-vars": [2],
55+
"no-useless-call": [2],
56+
"no-var": [2],
57+
"no-void": [2],
58+
"no-warning-comments": [2],
59+
"no-with": [2],
60+
"quote-props": [2, "as-needed"],
61+
"prefer-arrow-callback": [2],
62+
"radix": [2],
63+
"semi": [2, "always"],
64+
"semi-spacing": [2],
65+
"space-before-function-paren": [2, "always"],
66+
"space-before-blocks": [2, "always"],
67+
"spaced-comment": [2, "always"],
68+
"strict": [2, "global"],
69+
"yoda": [2, "never"]
70+
},
71+
"parserOptions": {
72+
"ecmaVersion": 6,
73+
"sourceType": "module",
74+
"ecmaFeatures": {
75+
"experimentalObjectRestSpread": true
76+
}
77+
},
78+
"parser": "babel-eslint",
79+
"plugins": [
80+
"babel",
81+
"import"
82+
],
83+
"env": {
84+
"node": true,
85+
"es6": true
86+
},
87+
"settings": {
88+
"import/ignore": [
89+
"node_modules",
90+
".json$"
91+
]
92+
}
93+
}

0 commit comments

Comments
 (0)