Skip to content

Commit

Permalink
lower the max line length
Browse files Browse the repository at this point in the history
  • Loading branch information
ZumZoom committed Jul 4, 2024
1 parent b89316d commit f5065e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"no-debugger": 0,
"no-undef": 2,
"object-curly-spacing": [2, "always"],
"max-len": [2, 200],
"max-len": [2, 160],
"generator-star-spacing": ["error", "before"],
"promise/avoid-new": 0,
"promise/always-return": 0
Expand Down
2 changes: 1 addition & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"tabWidth": 4,
"printWidth": 200,
"printWidth": 160,
"semi": true,
"trailingComma": "all",
"singleQuote": true
Expand Down

0 comments on commit f5065e7

Please sign in to comment.