Skip to content

Commit

Permalink
docs: update generated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
brettz9 committed Aug 5, 2024
1 parent 0973caf commit b3c6c02
Show file tree
Hide file tree
Showing 56 changed files with 112 additions and 112 deletions.
4 changes: 2 additions & 2 deletions docs/rules/check-access.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Also reports:

The following patterns are considered problems:

````js
````ts
/**
* @access foo
*/
Expand Down Expand Up @@ -145,7 +145,7 @@ function quux (foo) {

The following patterns are not considered problems:

````js
````ts
/**
*
*/
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/check-alignment.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Fixes alignment.

The following patterns are considered problems:

````js
````ts
/**
* @param {Number} foo
*/
Expand Down Expand Up @@ -120,7 +120,7 @@ class Foo {

The following patterns are not considered problems:

````js
````ts
/**
* Desc
*
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/check-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ expression-oriented rules will be used by default as well:

The following patterns are considered problems:

````js
````ts
/**
* @example alert('hello')
*/
Expand Down Expand Up @@ -563,7 +563,7 @@ const functionName = function (paramOne, paramTwo,

The following patterns are not considered problems:

````js
````ts
/**
* @example ```js
alert('hello');
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/check-indentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ report a padding issue:

The following patterns are considered problems:

````js
````ts
/** foo */
function quux () {

Expand Down Expand Up @@ -188,7 +188,7 @@ function quux () {

The following patterns are not considered problems:

````js
````ts
/**
* foo
*
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/check-line-alignment.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Disables `wrapIndent`; existing wrap indentation is preserved without changes.

The following patterns are considered problems:

````js
````ts
/**
* Function description.
*
Expand Down Expand Up @@ -582,7 +582,7 @@ function quux () {}

The following patterns are not considered problems:

````js
````ts
/**
* Function description.
*
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/check-param-names.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Whether to avoid checks for missing `@param` definitions. Defaults to `false`. C

The following patterns are considered problems:

````js
````ts
/**
* @param Foo
*/
Expand Down Expand Up @@ -691,7 +691,7 @@ export function fn(...[type, arg]: FnArgs): void {

The following patterns are not considered problems:

````js
````ts
/**
*
*/
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/check-property-names.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ be removed even if it has a different type or description).

The following patterns are considered problems:

````js
````ts
/**
* @typedef (SomeType) SomeTypedef
* @property Foo.Bar
Expand Down Expand Up @@ -175,7 +175,7 @@ function quux ({foo, bar}, baz) {

The following patterns are not considered problems:

````js
````ts
/**
*
*/
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/check-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ rule is enforced (except under "permissive" and "closure" modes).

The following patterns are considered problems:

````js
````ts
/**
* @param {string=} foo
*/
Expand All @@ -54,7 +54,7 @@ function quux (foo) {

The following patterns are not considered problems:

````js
````ts
/**
* @param {string=} foo
*/
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/check-tag-names.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ this

The following patterns are considered problems:

````js
````ts
/** @type {string} */let a;
// "jsdoc/check-tag-names": ["error"|"warn", {"typed":true}]
// Message: '@type' is redundant when using a type system.
Expand Down Expand Up @@ -775,7 +775,7 @@ function quux () {

The following patterns are not considered problems:

````js
````ts
/** @default 0 */
let a;
// "jsdoc/check-tag-names": ["error"|"warn", {"typed":true}]
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/check-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ permitted.

The following patterns are considered problems:

````js
````ts
/**
* @param {abc} foo
*/
Expand Down Expand Up @@ -856,7 +856,7 @@ function a () {}

The following patterns are not considered problems:

````js
````ts
/**
* @param {number} foo
* @param {Bar} bar
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/check-values.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Whether to enable validation that `@variation` must be a number. Defaults to

The following patterns are considered problems:

````js
````ts
/**
* @version
*/
Expand Down Expand Up @@ -270,7 +270,7 @@ function quux (foo) {

The following patterns are not considered problems:

````js
````ts
/**
* @version 3.4.1
*/
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/convert-to-jsdoc-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Defaults to `VariableDeclarator`, `TSPropertySignature`, `PropertyDefinition`.

The following patterns are considered problems:

````js
````ts
// A single line comment
function quux () {}
// "jsdoc/convert-to-jsdoc-comments": ["error"|"warn", {"enforceJsdocLineStyle":"single"}]
Expand Down Expand Up @@ -211,7 +211,7 @@ var a = []; // Test comment

The following patterns are not considered problems:

````js
````ts
/** A single line comment */
function quux () {}
// "jsdoc/convert-to-jsdoc-comments": ["error"|"warn", {"enforceJsdocLineStyle":"single"}]
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/empty-tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ add them within this option.

The following patterns are considered problems:

````js
````ts
/**
* @abstract extra text
*/
Expand Down Expand Up @@ -153,7 +153,7 @@ function quux () {

The following patterns are not considered problems:

````js
````ts
/**
* @abstract
*/
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/implements-on-classes.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ section of our README for more on the expected format.

The following patterns are considered problems:

````js
````ts
/**
* @implements {SomeClass}
*/
Expand Down Expand Up @@ -136,7 +136,7 @@ class Foo {

The following patterns are not considered problems:

````js
````ts
/**
* @implements {SomeClass}
* @class
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/imports-as-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ which is not listed in `dependencies` or `devDependencies`.

The following patterns are considered problems:

````js
````ts
/**
* @type {null|import('sth').SomeApi}
*/
Expand Down Expand Up @@ -50,7 +50,7 @@ The following patterns are considered problems:

The following patterns are not considered problems:

````js
````ts
/**
* @type {null|import('eslint').ESLint}
*/
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/informative-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ The default `uselessWords` option is:

The following patterns are considered problems:

````js
````ts
/** the */
let myValue = 3;
// Message: This description only repeats the name it describes.
Expand Down Expand Up @@ -300,7 +300,7 @@ export default function packageNameFromPath(path) {

The following patterns are not considered problems:

````js
````ts
/** */
let myValue = 3;

Expand Down
4 changes: 2 additions & 2 deletions docs/rules/match-description.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ section of our README for more on the expected format.

The following patterns are considered problems:

````js
````ts
/**
* foo.
*/
Expand Down Expand Up @@ -633,7 +633,7 @@ function quux () {

The following patterns are not considered problems:

````js
````ts
/**
*
*/
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/match-name.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ be applied, however.

The following patterns are considered problems:

````js
````ts
/**
* @param opt_a
* @param opt_b
Expand Down Expand Up @@ -194,7 +194,7 @@ function quux () {}

The following patterns are not considered problems:

````js
````ts
/**
* @param opt_a
* @param opt_b
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/multiline-blocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ cannot be reliably added after the tag either).

The following patterns are considered problems:

````js
````ts
/** Reported up here
* because the rest is multiline
*/
Expand Down Expand Up @@ -293,7 +293,7 @@ The following patterns are considered problems:

The following patterns are not considered problems:

````js
````ts
/** Not reported */

/**
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/no-bad-blocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ apparent tag content.

The following patterns are considered problems:

````js
````ts
/*
* @param foo
*/
Expand Down Expand Up @@ -117,7 +117,7 @@ function quux (foo) {

The following patterns are not considered problems:

````js
````ts
/**
* @property foo
*/
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/no-blank-block-descriptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ in the block description.

The following patterns are considered problems:

````js
````ts
/**
*
* @param {number} x
Expand All @@ -58,7 +58,7 @@ function functionWithClearName() {}

The following patterns are not considered problems:

````js
````ts
/**
* Non-empty description
* @param {number} x
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/no-blank-blocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Whether or not to auto-remove the blank block. Defaults to `false`.

The following patterns are considered problems:

````js
````ts
/** */
// "jsdoc/no-blank-blocks": ["error"|"warn", {"enableFixer":true}]
// Message: No empty blocks
Expand Down Expand Up @@ -84,7 +84,7 @@ The following patterns are considered problems:

The following patterns are not considered problems:

````js
````ts
/** @tag */

/**
Expand Down
Loading

0 comments on commit b3c6c02

Please sign in to comment.