Skip to content

Commit

Permalink
extend code actions schema (#208)
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl authored Apr 14, 2023
1 parent d649c07 commit 12f6eae
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,31 @@
}
}
},
{
"file_patterns": [
"LSP.sublime-settings"
],
"schema": {
"properties": {
"lsp_code_actions_on_save": {
"properties": {
"source.addMissingImports.ts": {
"type": "boolean"
},
"source.fixAll.ts": {
"type": "boolean"
},
"source.organizeImports.ts": {
"type": "boolean"
},
"source.removeUnused.ts": {
"type": "boolean"
},
}
}
}
}
},
]
}
}

0 comments on commit 12f6eae

Please sign in to comment.