dotfiles/nvim/coc-settings.json
2023-10-17 11:31:02 -07:00

40 lines
805 B
JSON

{
"coc.preferences.formatOnSaveFiletypes": [
"go",
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"svelte",
"astro",
"html",
"css",
"json",
"graphql",
"markdown"
],
"python.formatting.provider": "black",
"python.formatting.blackPath": "/Library/Frameworks/Python.framework/Versions/3.9/bin/black",
"pyright.inlayHints.functionReturnTypes": false,
"pyright.inlayHints.variableTypes": false,
"svelte.enable-ts-plugin": true,
"eslint.probe": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html",
"vue",
"svelte"
],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html",
"vue",
"svelte"
]
}