mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-11 03:21:35 +00:00
22414744b0
Co-authored-by: qwerty287 <qwerty287@posteo.de> Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com> Co-authored-by: Anbraten <6918444+anbraten@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
21 lines
606 B
JSON
21 lines
606 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"],
|
|
"eslint.workingDirectories": ["./web"],
|
|
"prettier.ignorePath": "./web/.prettierignore",
|
|
// Enable the ESlint flat config support
|
|
// (remove this if your ESLint extension above v3.0.5)
|
|
"eslint.experimental.useFlatConfig": true,
|
|
// Auto fix
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.organizeImports": "never"
|
|
}
|
|
}
|