Files
dotfiles/nvim/coc-settings.json
T
2021-01-15 16:37:11 +01:00

25 lines
1002 B
JSON

{
"signature.target": "echo",
"suggest.autoTrigger": "always",
"python.jediEnabled": false,
"python.autoComplete.addBrackets": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.pylintArgs": ["--disable=all", "--enable=F,E,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode"],
"python.linting.flake8Args": ["--ignore=E221,E226,E231,E241,E501,E701,E704"],
"python.linting.enabled": true,
"git.enableGutters": true,
"yaml.format.enable": true,
"yaml.format.singleQuote": true,
"diagnostic-languageserver.filetypes": {
"vim": "vint",
"email": "languagetool",
"markdown": [ "write-good", "markdownlint" ],
"sh": "shellcheck",
"php": ["phpstan", "psalm"]
},
"diagnostic-languageserver.formatFiletypes": {
"sh": "shfmt"
}
}