Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 70c3679

Browse files
feychenieljharb
authored andcommittedMay 30, 2018
[docs] make rule names consistent
Renamed the title of this page to be the full name of the rule, like on the rest of the docs.
1 parent 6ab25ea commit 70c3679

5 files changed

+5
-5
lines changed
 

‎docs/rules/no-default-export.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# no-default-export
1+
# `import/no-default-export`
22

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

‎docs/rules/no-deprecated.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# import/no-deprecated
1+
# `import/no-deprecated`
22

33
Reports use of a deprecated name, as indicated by a JSDoc block with a `@deprecated`
44
tag or TomDoc `Deprecated: ` comment.

‎docs/rules/no-named-export.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# no-named-export
1+
# `import/no-named-export`
22

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

‎docs/rules/no-relative-parent-imports.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# no-relative-parent-imports
1+
# import/no-relative-parent-imports
22

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

‎docs/rules/no-self-import.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Forbid a module from importing itself
1+
# Forbid a module from importing itself (`import/no-self-import`)
22

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

0 commit comments

Comments
 (0)
Please sign in to comment.