25 lines
993 B
JSON
25 lines
993 B
JSON
{
|
|
"signature.target": "echo",
|
|
"suggest.autoTrigger": "always",
|
|
"python.linting.enabled": true,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.linting.mypyEnabled": true,
|
|
"python.linting.pylintEnabled": false,
|
|
"python.analysis.useLibraryCodeForTypes": false,
|
|
/* "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=E731"],
|
|
"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"
|
|
}
|
|
}
|