dots/.vim/coc-settings.json

49 lines
1.0 KiB
JSON
Raw Normal View History

2020-02-16 09:45:55 +01:00
{
2020-02-17 17:29:40 +01:00
"eslint.autoFixOnSave": true,
"eslint.filetypes": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"typescript.tsx"
],
"prettier.eslintIntegration": true,
"prettier.semi": false,
"prettier.tabWidth": 2,
"prettier.singleQuote": true,
"prettier.arrowParens": "avoid",
2020-02-17 17:04:51 +01:00
"coc.preferences.colorSupport": true,
"coc.preferences.formatOnInsertLeave": true,
2020-02-17 17:51:53 +01:00
"coc.preferences.formatOnType": true,
2020-02-17 17:04:51 +01:00
"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": "x",
"diagnostic.warningSign": "!",
2020-02-17 17:51:53 +01:00
"diagnostic.infoSign": "?",
2020-02-19 10:26:20 +01:00
"suggest.autoTrigger": "trigger",
"emmet.includeLanguages": { "javascript": "javascriptreact" }
2020-02-16 09:45:55 +01:00
}