26 lines
928 B
JSON
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"
|
|
}
|
|
}
|