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 6ef957a commit 330d1ddCopy full SHA for 330d1dd
docs/rules/numeric-separators-style.md
@@ -50,7 +50,7 @@ Example:
50
51
```js
52
// eslint unicorn/numeric-separators-style: ["error", {"onlyIfContainsSeparator": true, "binary": {"onlyIfContainsSeparator": false}]
53
-const number = 100000; // Pass, this number does not contains separators
+const number = 100000; // Pass, this number does not contain separators
54
const binary = 0b101010001; // Fail, `binary` type don't require separators
55
const hexadecimal = 0xD_EED_BEE_F; // Fail, it contain separators and it's incorrectly grouped
56
```
0 commit comments