Skip to content

Commit

Permalink
Merge pull request #38 from lmnr-ai/dev
Browse files Browse the repository at this point in the history
fix: only warn on lines too long (#37)
  • Loading branch information
dinmukhamedm authored Oct 13, 2024
2 parents a056d36 + 5c7f2f6 commit 6620495
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 6620495

Please sign in to comment.