Skip to content

Commit

Permalink
feat(eslint-plugin-experience): add no-namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Nov 17, 2023
1 parent a3c98e4 commit 4cac236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/eslint-plugin-experience/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,7 @@ module.exports = {
'error',
{ignoreParameters: true},
],
'@typescript-eslint/no-namespace': ['error', {allowDeclarations: true}],
'@typescript-eslint/no-non-null-asserted-optional-chain': 'error',
'@typescript-eslint/no-shadow': 'error',
'@typescript-eslint/no-unnecessary-boolean-literal-compare': 'error',
Expand Down Expand Up @@ -829,7 +830,6 @@ module.exports = {
'@typescript-eslint/consistent-type-imports': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-namespace': ['error', {allowDeclarations: true}],
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-shadow': 'off',
'@typescript-eslint/no-unnecessary-condition': 'off',
Expand Down

0 comments on commit 4cac236

Please sign in to comment.