Skip to content

Commit

Permalink
Do not override namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
joao-vasconcelos committed May 29, 2024
1 parent fadcb1a commit 68ddb32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions rules/next.rule.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ export default tseslint.config(

{
plugins: {
'@perfectionist': perfectionist,
'@stylistic': stylistic,
perfectionist,
},
},

Expand Down Expand Up @@ -58,7 +58,6 @@ export default tseslint.config(
'**/*.js', '**/*.ts', '**/*.tsx', '**/*.jsx',
],
rules: {
'@perfectionist/sort-jsx-props': 'off',
'@stylistic/indent': ['error', 'tab'],
'@stylistic/jsx-indent': [2, 'tab', { checkAttributes: true, indentLogicalExpressions: true }],
'@stylistic/jsx-indent-props': [2, 'tab'],
Expand All @@ -69,6 +68,7 @@ export default tseslint.config(
'@stylistic/no-tabs': ['error', { allowIndentationTabs: true }],
'no-unused-vars': 'warn',
'no-var': 'error',
'perfectionist/sort-jsx-props': 'off',
},
},

Expand Down
2 changes: 1 addition & 1 deletion rules/node.rule.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ export default tseslint.config(

{
plugins: {
'@perfectionist': perfectionist,
'@stylistic': stylistic,
perfectionist,
},
},

Expand Down

0 comments on commit 68ddb32

Please sign in to comment.