Skip to content

Commit 3a80c69

Browse files
committed
chore: Get rid of lint errors
1 parent f143ce2 commit 3a80c69

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ module.exports = {
2121
'no-plusplus': ["error", { "allowForLoopAfterthoughts": true }], // x++ is used very often in cycles
2222
'class-methods-use-this': 0, // it't not required to use this in class methods
2323
'no-bitwise': ["error", { "allow": ["~"] }], // allow to use ~x.indexOf
24+
'no-restricted-syntax': 0, // for..of is used at tests
2425
'output-todo-comments/output-todo-comments': [
2526
'warn', {
2627
terms: ['todo'],

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
"eslint": "^3.8.1",
109109
"eslint-config-airbnb-base": "^9.0.0",
110110
"eslint-loader": "^1.6.0",
111-
"eslint-plugin-import": "^1.16.0",
111+
"eslint-plugin-import": "^2.0.1",
112112
"eslint-plugin-output-todo-comments": "0.0.6",
113113
"ghooks": "^1.3.2",
114114
"if-env": "^1.0.0",
@@ -128,7 +128,7 @@
128128
"karma-webpack": "^1.8.0",
129129
"karma-webpack-with-fast-source-maps": "^1.10.0",
130130
"npm-check-updates": "^2.8.5",
131-
"npm-registry-client": "^7.2.1",
131+
"npm-registry-client": "^7.3.0",
132132
"optimist": "^0.6.1",
133133
"semantic-release": "^4.3.5",
134134
"shx": "^0.1.4",

0 commit comments

Comments
 (0)