dots/.vim/coc-settings.json

53 lines
1.1 KiB
JSON
Raw Normal View History

2020-05-07 02:23:37 +02:00
{
"eslint.autoFixOnSave": true,
"eslint.filetypes": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"typescript.tsx"
],
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",
"css"
],
"coc.preferences.formatOnSaveFiletypes": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"typescript.tsx",
"html",
"json",
"Markdown",
"css"
],
"diagnostic.errorSign": ">",
"diagnostic.warningSign": ".",
"diagnostic.infoSign": ".",
"suggest.autoTrigger": "trigger",
2020-05-13 19:10:30 +02:00
"emmet.includeLanguages": { "javascript": "javascriptreact" },
"svelte.plugin.typescript.diagnostics.enable": false
2020-05-07 02:23:37 +02:00
}