Skip to content
This repository has been archived by the owner on Dec 30, 2023. It is now read-only.

Commit

Permalink
Fix rule name from no-re-exports to no-re-export
Browse files Browse the repository at this point in the history
  • Loading branch information
christianvuerings committed Oct 16, 2023
1 parent 44d73d1 commit bd2b0ad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.0.2

- Fix rule name from `no-re-exports` to `no-re-export`

# 0.0.1

* Initial release
- Initial release
4 changes: 2 additions & 2 deletions src/rules/no-re-export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { AST_NODE_TYPES, ESLintUtils, TSESTree } from "@typescript-eslint/utils"

const createRule = ESLintUtils.RuleCreator(
(name) =>
`https://github.com/christianvuerings/eslint-plugin-no-re-exports/blob/main/docs/${name}.md`,
`https://github.com/christianvuerings/eslint-plugin-no-re-export/blob/main/docs/${name}.md`,
);

interface ReportInfo {
Expand All @@ -11,7 +11,7 @@ interface ReportInfo {
}

export default createRule({
name: "no-re-exports",
name: "no-re-export",
defaultOptions: [],
meta: {
docs: {
Expand Down

0 comments on commit bd2b0ad

Please sign in to comment.