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

Exempt lines which look like pure JSX from the maxlen line
pull/21833/head
David Baker 2017-02-01 10:25:46 +00:00 committed by GitHub
commit f643224f93
1 changed files with 5 additions and 1 deletions

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"],