mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-12 12:15:00 +00:00
19 lines
487 B
JSON
19 lines
487 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",
|
|
"eslint.workingDirectories": ["./web"],
|
|
"prettier.ignorePath": "./web/.prettierignore",
|
|
// Auto fix
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.organizeImports": "never"
|
|
}
|
|
}
|