Skip to content

Commit

Permalink
feat: add no-re-export
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Nov 21, 2023
1 parent 2b2fd1b commit 6bf9db8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import importSpecifierNewline from './rules/importSpecifierNewline';
import noBarrelImport from './rules/noBarrelImport';
import noExportAll from './rules/noExportAll';
import noImportNamespaceDestructure from './rules/noImportNamespaceDestructure';
import noReExport from './rules/noReExport';
import noReassignImports from './rules/noReassignImports';
import noRestrictedImports from './rules/noRestrictedImports';
import noRestrictedStrings from './rules/noRestrictedStrings';
Expand Down Expand Up @@ -39,6 +40,7 @@ export = {
'no-barrel-import': noBarrelImport,
'no-export-all': noExportAll,
'no-import-namespace-destructure': noImportNamespaceDestructure,
'no-re-export': noReExport,
'no-reassign-imports': noReassignImports,
'no-restricted-imports': noRestrictedImports,
'no-restricted-strings': noRestrictedStrings,
Expand Down

0 comments on commit 6bf9db8

Please sign in to comment.