-| [](https://typescript-eslint.io/) | [naming-convention](https://typescript-eslint.io/rules/naming-convention)<br>Enforce naming conventions for everything across a codebase | <details><summary>selector: variableLike, met...</summary><pre>[<br> {<br> "selector": [<br> "variableLike",<br> "method",<br> "typeProperty",<br> "parameterProperty",<br> "classProperty"<br> ],<br> "format": [<br> "camelCase"<br> ]<br> },<br> {<br> "selector": "variable",<br> "format": [<br> "camelCase",<br> "UPPER_CASE"<br> ]<br> },<br> {<br> "selector": "typeLike",<br> "format": [<br> "PascalCase"<br> ]<br> },<br> {<br> "selector": "enumMember",<br> "format": [<br> "PascalCase"<br> ]<br> },<br> {<br> "selector": "parameter",<br> "modifiers": [<br> "unused"<br> ],<br> "format": null,<br> "custom": {<br> "regex": "^(_+|[a-z][a-zA-Z0-9]*)$",<br> "match": true<br> }<br> },<br> {<br> "selector": "objectLiteralProperty",<br> "modifiers": [<br> "requiresQuotes"<br> ],<br> "format": null<br> },<br> {<br> "selector": [<br> "variable",<br> "parameter"<br> ],<br> "modifiers": [<br> "destructured"<br> ],<br> "format": null<br> }<br>]</pre></details> | - |
0 commit comments