Skip to content

Commit

Permalink
Disable no-implicit-globals
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrtenz committed Sep 25, 2024
1 parent 25045b4 commit 80e8dfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/base/rules-snapshot.json
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@
"no-func-assign": "error",
"no-global-assign": "error",
"no-implicit-coercion": "error",
"no-implicit-globals": "error",
"no-implicit-globals": "off",
"no-implied-eval": "error",
"no-import-assign": "error",
"no-inner-declarations": ["error", "functions"],
Expand Down
2 changes: 1 addition & 1 deletion packages/base/src/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ const rules = [
'no-extra-bind': 'error',
'no-extra-label': 'error',
'no-implicit-coercion': 'error',
'no-implicit-globals': 'error',
'no-implicit-globals': 'off',
'no-implied-eval': 'error',
'no-inner-declarations': ['error', 'functions'],
'no-invalid-this': 'error',
Expand Down

0 comments on commit 80e8dfd

Please sign in to comment.