ESLint plugin providing comprehensive linting rules for ES2015+ import/export syntax with static analysis and module system enforcement.
80
Configure a linting setup that flags modules in the project which either expose no exports or expose exports that are never consumed elsewhere, while allowing intentional ignores for utility areas.
src/ that has no exports or whose exports are never imported anywhere else in the project. @testsrc/__mocks__/ and any file ending with .stories.tsx are ignored by the unused-export checks even if they have no consumers. @test@generates
src/**/*.{js,ts,tsx}.Provides import/export linting with project-wide unused export detection.
Install with Tessl CLI
npx tessl i tessl/npm-eslint-plugin-import-xdocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10