Skip to content

Commit

Permalink
docs: fix typos and missing info (#17257)
Browse files Browse the repository at this point in the history
  • Loading branch information
edlucas committed Jun 8, 2023
1 parent e0a2448 commit 35e11d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/rules/id-match.md
Expand Up @@ -91,10 +91,10 @@ This rule has an object option:

* `"properties": false` (default) does not check object properties
* `"properties": true` requires object literal properties and member expression assignment properties to match the specified regular expression
* `"classFields": false` (default) does not class field names
* `"classFields": false` (default) does not check class field names
* `"classFields": true` requires class field names to match the specified regular expression
* `"onlyDeclarations": false` (default) requires all variable names to match the specified regular expression
* `"onlyDeclarations": true` requires only `var`, `function`, and `class` declarations to match the specified regular expression
* `"onlyDeclarations": true` requires only `var`, `const`, `let`, `function`, and `class` declarations to match the specified regular expression
* `"ignoreDestructuring": false` (default) enforces `id-match` for destructured identifiers
* `"ignoreDestructuring": true` does not check destructured identifiers

Expand Down

0 comments on commit 35e11d3

Please sign in to comment.