Files
automatic/javascript/.eslintrc.json
T
Vladimir Mandic 57ae792004 add ui ordering
2023-05-09 09:09:31 -04:00

22 lines
460 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"
}
}