CyberChef/.eslintrc.json

22 lines
390 B
JSON
Raw Normal View History

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