Files
node-screenlogic/.eslintrc.json
Parnic 71dad9a51b Disabled max-len eslint rule for the entire project
Personally I've never found value in keeping line lengths low and it just leads to code that's awkward to write and read. No sense in disabling this per-file.
2020-06-09 09:22:25 -05:00

13 lines
150 B
JSON

{
"extends": "strongloop",
"rules": {
"max-len": "off"
},
"parserOptions": {
"ecmaVersion": 6
},
"env": {
"mocha": true
}
}