Skip to content

Commit c427200

Browse files
committed
Update ESLint to latest version
1 parent 3abe1e9 commit c427200

File tree

9 files changed

+796
-730
lines changed

9 files changed

+796
-730
lines changed

.eslintrc .eslintrc.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@
4747
"object-curly-spacing": ["error", "always"],
4848
"arrow-parens": ["error", "as-needed"],
4949
"linebreak-style": ["error", "unix"],
50-
"no-trailing-spaces": ["error"]
50+
"no-trailing-spaces": ["error"],
51+
"no-prototype-builtins": "off",
52+
"no-async-promise-executor": "off"
5153
}
5254
}

Gruntfile.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@ module.exports = grunt => {
9898
]
9999
},
100100
source: {
101-
options: {
102-
parserOptions: {
103-
ecmaVersion: 8
104-
}
105-
},
101+
// options: {
102+
// parserOptions: {
103+
// ecmaVersion: 8
104+
// }
105+
// },
106106
src: ['src/**/*.js']
107107
},
108108
test: {

0 commit comments

Comments
 (0)