Closed
Description
Before You File a Documentation Request Please Confirm You Have Done The Following...
- I have looked for existing open or closed documentation requests that match my proposal.
- I have read the FAQ and my problem is not listed.
Suggested Changes
https://typescript-eslint.io/rules/naming-convention includes several lists of names. For example:
- https://typescript-eslint.io/rules/naming-convention/#individual-selectors:
variable
,function
,parameter
, etc. - Within
variable
in ☝️ : "Allowed types:boolean
,string
,number
,function
,array
." - Within https://typescript-eslint.io/rules/naming-convention/#selector-options: "
readonly
,static
,abstract
,protected
,private
"
That page is already pretty big and somewhat hard to read through. Having unsorted lists of keywords and names makes it just a bit harder.
It'd be great if someone could go through the page's lists -both actual *
lists and comma-sorted inline ones- and sort them.
- `readonly`, `static`, `abstract`, `protected`, `private`
+ `abstract`, `private`, `protected`, `readonly`, `static