mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-03 04:59:13 -04:00
24 lines
443 B
JSON
24 lines
443 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
|
|
},
|
|
"globals": {
|
|
"COMPILE_TIME": true
|
|
}
|
|
}
|