Merge pull request #664 from matrix-org/rav/no_maxlen_jsx

Exempt lines which look like pure JSX from the maxlen line
This commit is contained in:
David Baker 2017-02-01 10:25:46 +00:00 committed by GitHub
commit f643224f93

View file

@ -53,7 +53,11 @@ module.exports = {
* things that are errors in the js-sdk config that the current
* code does not adhere to, turned down to warn
*/
"max-len": ["warn"],
"max-len": ["warn", {
// apparently people believe the length limit shouldn't apply
// to JSX.
ignorePattern: '^\\s*<',
}],
"valid-jsdoc": ["warn"],
"new-cap": ["warn"],
"key-spacing": ["warn"],