Skip to content

Commit

Permalink
Fix root .eslintrc to validate as JSON
Browse files Browse the repository at this point in the history
Around the configuration of import/no-unresolved was a problematic colon
that failed the eslint file to validate as JSON.
  • Loading branch information
sthzg authored Jul 13, 2016
1 parent 2db0659 commit 280098e
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@
"padded-blocks": 0,
"react/prefer-stateless-function": 0,
"no-underscore-dangle": [ "error", { "allowAfterThis": true }],
"import/no-unresolved": [ "error", "ignore": [
'config',
'components/',
'stores/',
'actions/',
'sources/',
'styles/',
'images/'
]]
"import/no-unresolved": ["error", {
"ignore": [
"config",
"components/",
"stores/",
"actions/",
"sources/",
"styles/",
"images/"
]
}]
}
}

0 comments on commit 280098e

Please sign in to comment.