CyberChef/.eslintrc.json
Thomas Grainger 640f555b8a
fix eslint:recommended errors
this should find most of the imports
2016-11-29 18:36:38 +00:00

21 lines
390 B
JSON

{
"extends": "eslint:recommended",
"parser": "babel-eslint",
"plugins": ["babel"],
"rules": {
"no-unused-vars": 0,
"no-console": 0,
"no-cond-assign": 0,
"no-unsafe-finally": 0
},
"settings": {
"import/resolver": {
"webpack": {}
}
},
"env": {
"browser": true,
"node": true
}
}