Skip to content

Commit ca396f8

Browse files
authored
Docs: Update eslint-docgen to 0.5.1 (#290)
1 parent abca2a2 commit ca396f8

File tree

102 files changed

+331
-128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+331
-128
lines changed

docs/rules/no-ajax-events.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
[//]: # (This file is generated by eslint-docgen. Do not edit it directly.)
2+
13
# no-ajax-events
24

35
Disallows global ajax events handlers: [`.ajaxComplete`](https://api.jquery.com/ajaxComplete/)/[`.ajaxError`](https://api.jquery.com/ajaxError/)/[`.ajaxSend`](https://api.jquery.com/ajaxSend/)/[`.ajaxStart`](https://api.jquery.com/ajaxStart/)/[`.ajaxStop`](https://api.jquery.com/ajaxStop/)/[`.ajaxSuccess`](https://api.jquery.com/ajaxSuccess/). Prefer local events.
46

5-
⚙️ This rule is enabled in `plugin:no-jquery/slim`.
7+
📋 This rule is enabled in `plugin:no-jquery/slim`.
68

79
## Rule details
810

docs/rules/no-ajax.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
[//]: # (This file is generated by eslint-docgen. Do not edit it directly.)
2+
13
# no-ajax
24

35
Disallows the [`$.ajax`](https://api.jquery.com/jQuery.ajax/)/[`$.get`](https://api.jquery.com/jQuery.get/)/[`$.getJSON`](https://api.jquery.com/jQuery.getJSON/)/[`$.getScript`](https://api.jquery.com/jQuery.getScript/)/[`$.post`](https://api.jquery.com/jQuery.post/) utilies. Prefer `Window.fetch`.
46

5-
⚙️ This rule is enabled in `plugin:no-jquery/slim`.
7+
📋 This rule is enabled in `plugin:no-jquery/slim`.
68

7-
⚙️ This rule is enabled in `plugin:no-jquery/all`.
9+
📋 This rule is enabled in `plugin:no-jquery/all`.
810

911
## Rule details
1012

docs/rules/no-and-self.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
[//]: # (This file is generated by eslint-docgen. Do not edit it directly.)
2+
13
# no-and-self
24

35
Disallows the [`.andSelf`](https://api.jquery.com/andSelf/) method. Prefer `.addBack`.
46

5-
⚙️ This rule is enabled in `plugin:no-jquery/deprecated-1.8`.
7+
📋 This rule is enabled in `plugin:no-jquery/deprecated-1.8`.
68

79
🔧 The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
810

docs/rules/no-animate-toggle.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
[//]: # (This file is generated by eslint-docgen. Do not edit it directly.)
2+
13
# no-animate-toggle
24

35
Disallows the duration argument when using the [`.show`](https://api.jquery.com/show/), [`.hide`](https://api.jquery.com/hide/) & [`.toggle`](https://api.jquery.com/toggle/) methods. Prefer CSS transitions.
46

5-
⚙️ This rule is enabled in `plugin:no-jquery/slim`.
7+
📋 This rule is enabled in `plugin:no-jquery/slim`.
68

79
## Rule details
810

docs/rules/no-animate.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
[//]: # (This file is generated by eslint-docgen. Do not edit it directly.)
2+
13
# no-animate
24

35
Disallows the [`.animate`](https://api.jquery.com/animate/) method. Use the `allowScroll` option to allow animations which are just used for scrolling. Prefer CSS transitions.
46

5-
⚙️ This rule is enabled in `plugin:no-jquery/slim`.
7+
📋 This rule is enabled in `plugin:no-jquery/slim`.
68

7-
⚙️ This rule is enabled in `plugin:no-jquery/all`.
9+
📋 This rule is enabled in `plugin:no-jquery/all`.
810

911
## Rule details
1012

docs/rules/no-append-html.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[//]: # (This file is generated by eslint-docgen. Do not edit it directly.)
2+
13
# no-append-html
24

35
Disallows using [`.append`](https://api.jquery.com/append/)/[`.prepend`](https://api.jquery.com/prepend/)/[`.before`](https://api.jquery.com/before/)/[`.after`](https://api.jquery.com/after/)/[`.replaceWith`](https://api.jquery.com/replaceWith/) to inject HTML, in order to prevent possible XSS bugs.

docs/rules/no-attr.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
[//]: # (This file is generated by eslint-docgen. Do not edit it directly.)
2+
13
# no-attr
24

35
Disallows the [`.attr`](https://api.jquery.com/attr/)/[`.removeAttr`](https://api.jquery.com/removeAttr/) methods and `$.attr`/[`$.removeAttr`](https://api.jquery.com/jQuery.removeAttr/) utilies. Prefer `Element#getAttribute`/`setAttribute`/`removeAttribute`.
46

5-
⚙️ This rule is enabled in `plugin:no-jquery/all`.
7+
📋 This rule is enabled in `plugin:no-jquery/all`.
68

79
## Rule details
810

docs/rules/no-bind.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
[//]: # (This file is generated by eslint-docgen. Do not edit it directly.)
2+
13
# no-bind
24

35
Disallows the [`.bind`](https://api.jquery.com/bind/)/[`.unbind`](https://api.jquery.com/unbind/) methods. Prefer `.on`/`.off` or `EventTarget#addEventListener`/`removeEventListener`.
46

5-
⚙️ This rule is enabled in `plugin:no-jquery/deprecated-3.0`.
7+
📋 This rule is enabled in `plugin:no-jquery/deprecated-3.0`.
68

7-
⚙️ This rule is enabled in `plugin:no-jquery/all`.
9+
📋 This rule is enabled in `plugin:no-jquery/all`.
810

911
## Rule details
1012

docs/rules/no-box-model.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
[//]: # (This file is generated by eslint-docgen. Do not edit it directly.)
2+
13
# no-box-model
24

35
Disallows the [`$.boxModel`](https://api.jquery.com/jQuery.boxModel/) property.
46

5-
⚙️ This rule is enabled in `plugin:no-jquery/deprecated-1.3`.
7+
📋 This rule is enabled in `plugin:no-jquery/deprecated-1.3`.
68

79
## Rule details
810

docs/rules/no-browser.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
[//]: # (This file is generated by eslint-docgen. Do not edit it directly.)
2+
13
# no-browser
24

35
Disallows the [`$.browser`](https://api.jquery.com/jQuery.browser/) property.
46

5-
⚙️ This rule is enabled in `plugin:no-jquery/deprecated-1.3`.
7+
📋 This rule is enabled in `plugin:no-jquery/deprecated-1.3`.
68

79
## Rule details
810

0 commit comments

Comments
 (0)