dotfiles/vim/coc-settings.json
2021-03-21 13:39:42 +01:00

32 lines
675 B
JSON

{
"languageserver": {
"terraform": {
"command": "terraform-ls",
"filetypes": ["terraform", "tf"],
"initializationOptions": {},
"settings": {}
}
},
"eslint.autoFixOnSave": true,
"eslint.filetypes": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"prettier.disableSuccessMessage": true,
"coc.preferences.formatOnSaveFiletypes": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"json",
"graphql"
],
"tsserver.formatOnType": true,
"coc.preferences.formatOnType": true,
"yaml.schemaStore.enable": true,
"yaml.schemas": {
"kubernetes": "/*.yaml"
}
}