Skip to content

Commit

Permalink
fix : Add max-len to the .eslintrc with the proper configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Edu93Jer committed Dec 16, 2020
1 parent 071e310 commit a385d43
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .eslintrc.json
Expand Up @@ -67,6 +67,13 @@
"key-spacing": ["error", { "beforeColon": false, "afterColon": true }],
"keyword-spacing": ["error", { "before": true, "after": true }],
"lines-between-class-members": ["error", "always", { "exceptAfterSingleLine": true }],
"max-len": ["error", 80, {
"ignoreUrls": true,
"ignoreComments": false,
"ignoreRegExpLiterals": true,
"ignoreStrings": true,
"ignoreTemplateLiterals": true
}],
"new-cap": ["error", { "newIsCap": true, "capIsNew": false, "properties": true }],
"new-parens": "error",
"no-array-constructor": "error",
Expand Down

0 comments on commit a385d43

Please sign in to comment.