Skip to content
This repository has been archived by the owner on Nov 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #15 from adrienne-deriv/fix-outside-rules
Browse files Browse the repository at this point in the history
Fix issue with outside rules and indent rule
  • Loading branch information
ali-hosseini-deriv authored Mar 8, 2024
2 parents 85735de + d319598 commit 285f3cc
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 34 deletions.
20 changes: 10 additions & 10 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,15 +202,15 @@ module.exports = {
],
},
],
"linebreak-style": ["error", "unix"],
"jsx-quotes": ["error", "prefer-single"],
"no-confusing-arrow": ["error", { allowParens: false }],
"no-tabs": ["error", { allowIndentationTabs: true }],
indent: ["error", 4],
quotes: [
"error",
"single",
{ avoidEscape: true, allowTemplateLiterals: false },
],
},
"linebreak-style": ["error", "unix"],
"jsx-quotes": ["error", "prefer-single"],
"no-confusing-arrow": ["error", { allowParens: false }],
"no-tabs": ["error", { allowIndentationTabs: true }],
indent: ["error", false],
quotes: [
"error",
"single",
{ avoidEscape: true, allowTemplateLiterals: false },
],
};
81 changes: 59 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jest-playwright": "^0.9.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
Expand All @@ -60,7 +60,7 @@
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-jest-playwright": "^0.9.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
Expand Down

0 comments on commit 285f3cc

Please sign in to comment.