dots/.vim/coc-settings.json

57 lines
1.2 KiB
JSON
Raw Normal View History

2020-05-07 02:23:37 +02:00
{
"eslint.autoFixOnSave": true,
"eslint.filetypes": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
2020-07-02 15:51:01 +02:00
"typescript.tsx",
"svelte"
2020-05-07 02:23:37 +02:00
],
2020-05-13 19:10:30 +02:00
2020-05-07 02:23:37 +02:00
"prettier.eslintIntegration": true,
"prettier.semi": false,
"prettier.tabWidth": 2,
"prettier.singleQuote": true,
"prettier.arrowParens": "avoid",
"prettier.disableSuccessMessage": true,
"coc.preferences.colorSupport": true,
"coc.preferences.formatOnInsertLeave": true,
"coc.preferences.formatOnType": true,
"coc.preferences.formatOnTypeFiletypes": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"typescript.tsx",
"html",
"json",
"Markdown",
2020-07-02 15:51:01 +02:00
"css",
"svelte"
2020-05-07 02:23:37 +02:00
],
"coc.preferences.formatOnSaveFiletypes": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"typescript.tsx",
"html",
"json",
"Markdown",
2020-07-02 15:51:01 +02:00
"css",
"svelte"
2020-05-07 02:23:37 +02:00
],
"diagnostic.errorSign": ">",
"diagnostic.warningSign": ".",
"diagnostic.infoSign": ".",
"suggest.autoTrigger": "trigger",
2020-05-13 19:10:30 +02:00
"emmet.includeLanguages": { "javascript": "javascriptreact" },
2020-05-20 21:13:46 +02:00
"javascript.suggestionActions.enabled": false,
2020-05-13 19:10:30 +02:00
"svelte.plugin.typescript.diagnostics.enable": false
2020-05-07 02:23:37 +02:00
}