Add new eslint rule "max-len"

This commit is contained in:
Guillaume Gomez 2022-05-25 13:58:14 +02:00
parent 33245e0bb3
commit 36d3c7e3c6

View file

@ -52,5 +52,6 @@ module.exports = {
"space-before-blocks": "error",
"comma-dangle": ["error", "always-multiline"],
"comma-style": ["error", "last"],
"max-len": ["error", { "code": 100, "tabWidth": 4 }],
}
};