We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ef36bf commit d1a2ca4Copy full SHA for d1a2ca4
docs/rules/no-atomics-pause.md
@@ -24,6 +24,28 @@ Atomics.pause()
24
25
</eslint-playground>
26
27
+## 🔧 Options
28
+
29
+This rule has an option.
30
31
+```jsonc
32
+{
33
+ "rules": {
34
+ "es-x/no-atomics-pause": [
35
+ "error",
36
+ {
37
+ "allowTestedProperty": false
38
+ }
39
+ ]
40
41
+}
42
+```
43
44
+### allowTestedProperty: boolean
45
46
+Configure the allowTestedProperty mode for only this rule.
47
+This is prior to the `settings['es-x'].allowTestedProperty` setting.
48
49
## 📚 References
50
51
- [Rule source](https://github.com/eslint-community/eslint-plugin-es-x/blob/master/lib/rules/no-atomics-pause.js)
0 commit comments