Skip to content

Commit 280098e

Browse files
authored
Fix root .eslintrc to validate as JSON
Around the configuration of import/no-unresolved was a problematic colon that failed the eslint file to validate as JSON.
1 parent 2db0659 commit 280098e

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.eslintrc

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,16 @@
1111
"padded-blocks": 0,
1212
"react/prefer-stateless-function": 0,
1313
"no-underscore-dangle": [ "error", { "allowAfterThis": true }],
14-
"import/no-unresolved": [ "error", "ignore": [
15-
'config',
16-
'components/',
17-
'stores/',
18-
'actions/',
19-
'sources/',
20-
'styles/',
21-
'images/'
22-
]]
14+
"import/no-unresolved": ["error", {
15+
"ignore": [
16+
"config",
17+
"components/",
18+
"stores/",
19+
"actions/",
20+
"sources/",
21+
"styles/",
22+
"images/"
23+
]
24+
}]
2325
}
2426
}

0 commit comments

Comments
 (0)