Skip to content

Commit

Permalink
Fixed annoying prettier's annoying jsxBracketSameLine deprecation war…
Browse files Browse the repository at this point in the history
…ning
  • Loading branch information
hernan-clich committed Oct 20, 2021
1 parent 297f998 commit 33860f3
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 @@ -37,7 +37,6 @@
"ignorePatterns": ["node_modules/", ".next/"],
"rules": {
// General
"indent": "off",
"no-console": "warn",
"no-multi-spaces": "warn",
"strict": "off",
Expand All @@ -52,6 +51,7 @@
}
],
"react/react-in-jsx-scope": "off",
"indent": ["error", 2, { "ignoredNodes": ["JSXElement", "JSXElement *"]}],
"@typescript-eslint/explicit-module-boundary-types": "off",
"no-unused-vars": 0,
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
Expand Down
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"jsxBracketSameLine": true,
"bracketSameLine": false,
"printWidth": 100,
"semi": true,
"singleQuote": true,
Expand Down

0 comments on commit 33860f3

Please sign in to comment.