Skip to content

Commit

Permalink
restrict max-len a little bit
Browse files Browse the repository at this point in the history
  • Loading branch information
iamnapo committed Apr 2, 2021
1 parent 9c9d062 commit df4ed32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = {
"import/extensions": ["error", "ignorePackages"],
"import/order": ["error", { "newlines-between": "always" }],
indent: ["error", "tab", { SwitchCase: 1 }],
"max-len": ["error", { code: 150, tabWidth: 2, ignoreUrls: true, ignoreRegExpLiterals: true, ignoreStrings: true, ignoreTemplateLiterals: true }],
"max-len": ["error", { code: 130, tabWidth: 2, ignoreUrls: true, ignoreRegExpLiterals: true, ignoreStrings: true, ignoreTemplateLiterals: true }],
"no-await-in-loop": "off",
"no-console": "off",
"no-implicit-coercion": "error",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
"ava": "^3.15.0"
},
"peerDependencies": {
"eslint": "^7.22.0",
"eslint": "^7.23.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^29.0.0"
},
Expand Down

0 comments on commit df4ed32

Please sign in to comment.