You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/rules/max-asserts.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Enforce a limit on the number of assertions in a test (`ava/max-asserts`)
2
2
3
-
🚫 This rule is _disabled_ in the ✅ `recommended`[config](https://github.com/avajs/eslint-plugin-ava#recommended-config).
3
+
🚫 This rule is _disabled_ in the following [configs](https://github.com/avajs/eslint-plugin-ava#recommended-config): `flat/recommended`, ✅ `recommended`.
Copy file name to clipboardexpand all lines: docs/rules/no-only-test.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# Ensure no `test.only()` are present (`ava/no-only-test`)
2
2
3
-
💼 This rule is enabled in the ✅ `recommended`[config](https://github.com/avajs/eslint-plugin-ava#recommended-config).
3
+
💼 This rule is enabled in the following [configs](https://github.com/avajs/eslint-plugin-ava#recommended-config): `flat/recommended`, ✅ `recommended`.
4
4
5
-
🔧💡 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
5
+
🔧💡 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
Copy file name to clipboardexpand all lines: docs/rules/no-skip-test.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# Ensure no tests are skipped (`ava/no-skip-test`)
2
2
3
-
💼 This rule is enabled in the ✅ `recommended`[config](https://github.com/avajs/eslint-plugin-ava#recommended-config).
3
+
💼 This rule is enabled in the following [configs](https://github.com/avajs/eslint-plugin-ava#recommended-config): `flat/recommended`, ✅ `recommended`.
4
4
5
-
🔧💡 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
5
+
🔧💡 This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix) and manually fixable by [editor suggestions](https://eslint.org/docs/latest/use/core-concepts#rule-suggestions).
Copy file name to clipboardexpand all lines: docs/rules/prefer-power-assert.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Enforce the use of the asserts that have no [power-assert](https://github.com/power-assert-js/power-assert) alternative (`ava/prefer-power-assert`)
2
2
3
-
🚫 This rule is _disabled_ in the ✅ `recommended`[config](https://github.com/avajs/eslint-plugin-ava#recommended-config).
3
+
🚫 This rule is _disabled_ in the following [configs](https://github.com/avajs/eslint-plugin-ava#recommended-config): `flat/recommended`, ✅ `recommended`.
Copy file name to clipboardexpand all lines: docs/rules/test-title-format.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Ensure test titles have a certain format (`ava/test-title-format`)
2
2
3
-
🚫 This rule is _disabled_ in the ✅ `recommended`[config](https://github.com/avajs/eslint-plugin-ava#recommended-config).
3
+
🚫 This rule is _disabled_ in the following [configs](https://github.com/avajs/eslint-plugin-ava#recommended-config): `flat/recommended`, ✅ `recommended`.
Recursively find the "origin" node of the given node.
39
40
40
-
Note: `context.getScope()` doesn't contain information about the outer scope so in most cases this function will only find the reference directly above the current scope. So the following code will only find the reference in this order: y -> x, and it will have no knowledge of the number `0`. (assuming we run this function on the identifier `y`)
41
+
Note: `sourceCode.getScope()` doesn't contain information about the outer scope so in most cases this function will only find the reference directly above the current scope. So the following code will only find the reference in this order: y -> x, and it will have no knowledge of the number `0`. (assuming we run this function on the identifier `y`)
0 commit comments