We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
babel
eslint
package.json
1 parent 702c248 commit 496d307Copy full SHA for 496d307
.babelrc
.eslintignore
.eslintrc.json
package.json
@@ -9,5 +9,28 @@
9
"dependencies": {
10
"bootstrap": "^3.4.0",
11
"copyfiles": "^2.4.1"
12
+ },
13
+ "eslintConfig": {
14
+ "parserOptions": {
15
+ "ecmaVersion": 6,
16
+ "sourceType": "module"
17
18
+ "rules": {
19
+ "semi": 1,
20
+ "no-cond-assign": 2,
21
+ "no-debugger": 2,
22
+ "comma-dangle": 0,
23
+ "no-unreachable": 2
24
+ }
25
26
+ "eslintIgnore": [
27
+ "*.min.js",
28
+ "*components*",
29
+ "*node_modules*",
30
+ "*built*",
31
+ "*build*"
32
+ ],
33
+ "babel": {
34
+ "presets": ["es2015"]
35
}
36
0 commit comments