CyberChef/.eslintrc.json

25 lines
443 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 03:11:21 +00:00
},
"globals": {
"COMPILE_TIME": true
2016-11-29 00:20:54 +00:00
}
}