Files
automatic/javascript/.eslintrc.json
T
Vladimir Mandic 0ccda9bc8b jumbo patch
2023-05-17 14:15:55 -04:00

23 lines
494 B
JSON

{
"globals": {},
"env": {
"browser": true,
"commonjs": false,
"node": false,
"jquery": false,
"es2020": true
},
"parserOptions": { "ecmaVersion": 2020 },
"plugins": [],
"extends": ["eslint:recommended", "airbnb-base"],
"rules": {
"max-len": [1, 220, 3],
"camelcase":"off",
"no-unused-vars":"off",
"no-plusplus":"off",
"no-param-reassign":"off",
"no-restricted-syntax":"off",
"no-mixed-operators":"off"
}
}