Prettify coc-settings

Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
This commit is contained in:
Marko Korhonen 2020-01-07 17:48:24 +02:00
parent ccf314034a
commit 87c4911c4d
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5

View file

@ -1,40 +1,39 @@
{ {
"python.jediEnabled": false, "python.jediEnabled": false,
"suggest.noselect": false, "suggest.noselect": false,
"suggest.echodocSupport": true, "suggest.echodocSupport": true,
"suggest.maxCompleteItemCount": 20, "suggest.maxCompleteItemCount": 20,
"diagnostic.virtualText": true, "coc.preferences.formatOnSaveFiletypes": [
"coc.preferences.formatOnSaveFiletypes": [ "javascript",
"javascript", "typescript",
"typescript", "typescriptreact",
"typescriptreact", "json",
"json", "javascriptreact",
"javascriptreact", "yaml"
"yaml" ],
], "prettier.singleQuote": true,
"eslint.filetypes": [ "diagnostic.errorSign": "•",
"javascript", "diagnostic.warningSign": "•",
"typescript", "diagnostic.infoSign": "•",
"typescriptreact", "suggest.snippetIndicator": "~",
"javascriptreact" "languageserver": {
], "bash": {
"prettier.singleQuote": true, "command": "bash-language-server",
"diagnostic.errorSign": "•", "args": ["start"],
"diagnostic.warningSign": "•", "filetypes": ["sh"],
"diagnostic.infoSign": "•", "ignoredRootPaths": ["~"]
"suggest.snippetIndicator": "~", },
"languageserver": { "xml": {
"bash": { "command": "xml-language-server",
"command": "bash-language-server", "args": ["start"],
"args": ["start"], "filetypes": ["xml"],
"filetypes": ["sh"], "ignoredRootPaths": ["~"]
"ignoredRootPaths": ["~"] }
}, },
"xml": { "markdownlint.config": {
"command": "xml-language-server", "rules": {
"args": ["start"], "default": true,
"filetypes": ["xml"], "line_length": false
"ignoredRootPaths": ["~"] }
} }
}
} }