mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 09:15:41 +03:00
Exempt lines which look like pure JSX from the maxlen line
This commit is contained in:
parent
878e5593ba
commit
cf049f2d75
1 changed files with 5 additions and 1 deletions
|
@ -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"],
|
||||
|
|
Loading…
Reference in a new issue