This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 889
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* creating rule * rule written * rule replicated * isolated rule * added test files back in * captured case of this.contentTags being undefined * added documentation to test
- Loading branch information
1 parent
c4e16a0
commit 5ba08f0
Showing
3 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/** | ||
* Snippet where no error occurs (But completed-docs correctly gives an error on the lack of jsdoc). | ||
* @returns {Promise<Object>} | ||
*/ | ||
export const handler = async () => { ... } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"rules": { | ||
"completed-docs": [ | ||
true, | ||
{ | ||
"variables": { | ||
"visibilities": ["exported"], | ||
"tags": { "existence": [""] } | ||
} | ||
} | ||
] | ||
} | ||
} |