Files
dario-piotrowicz 66c6dbdc79 refactor(docs-infra): introduce max-len 120 eslint rule (#43439)
add the max-len rule to the aio eslintrc and fix what code
breaks such rule

PR Close #43439
2021-09-15 10:47:35 -07:00

25 lines
555 B
JSON

{
"root": true,
"extends": "../../.eslintrc.json",
"overrides": [
{
"files": ["*.js"],
"env": {
"es6": true,
"node": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"quotes": ["error", "single"],
"semi": ["error", "always"],
"no-var": ["error"]
}
}
]
}