Skip to content

Commit

Permalink
Disable one-namespace-per-file
Browse files Browse the repository at this point in the history
Now that we are modules, there's no reason to ban multiple namespaces
per file; each file is its own scope and declaring a namespace won't
merge it into any other files.
  • Loading branch information
jakebailey committed Sep 13, 2022
1 parent 9254e13 commit 9890d52
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@
"local/simple-indent": "error",
"local/debug-assert": "error",
"local/no-keywords": "error",
"local/one-namespace-per-file": "error",
// TOOD(jakebailey): delete; no longer relavent after modules.
// "local/one-namespace-per-file": "error",

// eslint-plugin-import
"import/no-extraneous-dependencies": ["error", { "optionalDependencies": false }],
Expand Down

0 comments on commit 9890d52

Please sign in to comment.