Files
dotfiles/nvim/coc-settings.json
T
Henrik Bakken 94691be75a vim colors ++
2021-04-29 13:57:58 +02:00

26 lines
928 B
JSON

{
"signature.target": "echo",
"suggest.autoTrigger": "always",
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": false,
"python.linting.pylintEnabled": false,
"python.analysis.useLibraryCodeForTypes": false,
"python.linting.flake8Args": ["--ignore=E731,W503,E501"],
"python.linting.mypyArgs": ["--disallow-any-generics","--ignore-missing-imports","--follow-imports=normal","--show-column-numbers"],
"diagnostic.showUnused": false,
"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"
}
}