mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-16 07:13:45 -05:00
Add 'fixAllDescription' property to CodeFixAction (#22616)
* Add 'fixAllDescription' property to CodeFixAction * Code review * Add to protocol * Make fixAllDescription be just a string
This commit is contained in:
@@ -4026,5 +4026,101 @@
|
||||
"Add definite assignment assertion to property '{0}'": {
|
||||
"category": "Message",
|
||||
"code": 95020
|
||||
},
|
||||
"Add all missing members": {
|
||||
"category": "Message",
|
||||
"code": 95022
|
||||
},
|
||||
"Infer all types from usage": {
|
||||
"category": "Message",
|
||||
"code": 95023
|
||||
},
|
||||
"Delete all unused declarations": {
|
||||
"category": "Message",
|
||||
"code": 95024
|
||||
},
|
||||
"Prefix all unused declarations with '_' where possible": {
|
||||
"category": "Message",
|
||||
"code": 95025
|
||||
},
|
||||
"Fix all detected spelling errors": {
|
||||
"category": "Message",
|
||||
"code": 95026
|
||||
},
|
||||
"Add initializers to all uninitialized properties": {
|
||||
"category": "Message",
|
||||
"code": 95027
|
||||
},
|
||||
"Add definite assignment assertions to all uninitialized properties": {
|
||||
"category": "Message",
|
||||
"code": 95028
|
||||
},
|
||||
"Add undefined type to all uninitialized properties": {
|
||||
"category": "Message",
|
||||
"code": 95029
|
||||
},
|
||||
"Change all jsdoc-style types to TypeScript": {
|
||||
"category": "Message",
|
||||
"code": 95030
|
||||
},
|
||||
"Change all jsdoc-style types to TypeScript (and add '| undefined' to nullable types)": {
|
||||
"category": "Message",
|
||||
"code": 95031
|
||||
},
|
||||
"Implement all unimplemented interfaces": {
|
||||
"category": "Message",
|
||||
"code": 95032
|
||||
},
|
||||
"Install all missing types packages": {
|
||||
"category": "Message",
|
||||
"code": 95033
|
||||
},
|
||||
"Rewrite all as indexed access types": {
|
||||
"category": "Message",
|
||||
"code": 95034
|
||||
},
|
||||
"Convert all to default imports": {
|
||||
"category": "Message",
|
||||
"code": 95035
|
||||
},
|
||||
"Make all 'super()' calls the first statement in their constructor": {
|
||||
"category": "Message",
|
||||
"code": 95036
|
||||
},
|
||||
"Add 'this.' to all unresolved variables matching a member name": {
|
||||
"category": "Message",
|
||||
"code": 95037
|
||||
},
|
||||
"Change all extended interfaces to 'implements'": {
|
||||
"category": "Message",
|
||||
"code": 95038
|
||||
},
|
||||
"Add all missing super calls": {
|
||||
"category": "Message",
|
||||
"code": 95039
|
||||
},
|
||||
"Implement all inherited abstract classes": {
|
||||
"category": "Message",
|
||||
"code": 95040
|
||||
},
|
||||
"Add all missing 'async' modifiers": {
|
||||
"category": "Message",
|
||||
"code": 95041
|
||||
},
|
||||
"Add '@ts-ignore' to all error messages": {
|
||||
"category": "Message",
|
||||
"code": 95042
|
||||
},
|
||||
"Annotate everything with types from JSDoc": {
|
||||
"category": "Message",
|
||||
"code": 95043
|
||||
},
|
||||
"Add '()' to all uncalled decorators": {
|
||||
"category": "Message",
|
||||
"code": 95044
|
||||
},
|
||||
"Convert all constructor functions to classes": {
|
||||
"category": "Message",
|
||||
"code": 95045
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user