Skip to content

Commit

Permalink
fix: only warn on lines too long (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
dinmukhamedm authored Oct 13, 2024
1 parent 3e50602 commit 5c7f2f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"rules": {
"indent": ["error", 2],
"eol-last": ["error", "always"],
"max-len": ["error", { "code": 120, "ignoreUrls": true, "ignoreStrings": true, "ignoreTemplateLiterals": true }],
"max-len": ["warn", { "code": 120, "ignoreUrls": true, "ignoreStrings": true, "ignoreTemplateLiterals": true }],
"semi": ["error", "always"],
"no-trailing-spaces": ["error"],
"arrow-body-style": ["warn", "as-needed"]
Expand Down

0 comments on commit 5c7f2f6

Please sign in to comment.