mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-11 03:21:35 +00:00
23 lines
564 B
JSON
23 lines
564 B
JSON
{
|
|
"git.ignoreLimitWarning": true,
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/bower_components": true,
|
|
"**/*.code-search": true,
|
|
"vendor/": true
|
|
},
|
|
"go.lintTool": "golangci-lint",
|
|
"go.lintFlags": ["--fast"],
|
|
"go.buildTags": "test",
|
|
"gopls": {
|
|
// cspell:words gopls
|
|
"buildFlags": ["-tags=test"]
|
|
},
|
|
"eslint.workingDirectories": ["./web"],
|
|
"prettier.ignorePath": "./web/.prettierignore",
|
|
// Auto fix
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.organizeImports": "never"
|
|
}
|
|
}
|