Skip to content

Commit

Permalink
[docs] make rule names consistent
Browse files Browse the repository at this point in the history
Renamed the title of this page to be the full name of the rule, like on the rest of the docs.
  • Loading branch information
feychenie authored and ljharb committed May 30, 2018
1 parent 6ab25ea commit 70c3679
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/rules/no-default-export.md
@@ -1,4 +1,4 @@
# no-default-export
# `import/no-default-export`

Prohibit default exports. Mostly an inverse of [`prefer-default-export`].

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/no-deprecated.md
@@ -1,4 +1,4 @@
# import/no-deprecated
# `import/no-deprecated`

Reports use of a deprecated name, as indicated by a JSDoc block with a `@deprecated`
tag or TomDoc `Deprecated: ` comment.
Expand Down
2 changes: 1 addition & 1 deletion docs/rules/no-named-export.md
@@ -1,4 +1,4 @@
# no-named-export
# `import/no-named-export`

Prohibit named exports. Mostly an inverse of [`no-default-export`].

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/no-relative-parent-imports.md
@@ -1,4 +1,4 @@
# no-relative-parent-imports
# import/no-relative-parent-imports

Use this rule to prevent imports to folders in relative parent paths.

Expand Down
2 changes: 1 addition & 1 deletion docs/rules/no-self-import.md
@@ -1,4 +1,4 @@
# Forbid a module from importing itself
# Forbid a module from importing itself (`import/no-self-import`)

Forbid a module from importing itself. This can sometimes happen during refactoring.

Expand Down

0 comments on commit 70c3679

Please sign in to comment.