Skip to content

Commit

Permalink
feat(eslint): no-restricted-exports
Browse files Browse the repository at this point in the history
  • Loading branch information
firestack authored and joshlarson committed Aug 27, 2024
1 parent 84d2d3c commit 523254a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions assets/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,16 @@ module.exports = {
"no-console": "error",
"prefer-rest-params": "off",
"no-sparse-arrays": "off",
"no-restricted-exports": ["warn",
{
"restrictDefaultExports": {
"direct": true,
"named": true,
"defaultFrom": true,
"namedFrom": true,
"namespaceFrom": true
}
}],
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-non-null-assertion": "error",
"@typescript-eslint/no-unused-vars": [
Expand Down

0 comments on commit 523254a

Please sign in to comment.