2021-12-21 09:52:10 +00:00
|
|
|
{
|
|
|
|
"git.ignoreLimitWarning": true,
|
|
|
|
"search.exclude": {
|
|
|
|
"**/node_modules": true,
|
|
|
|
"**/bower_components": true,
|
|
|
|
"**/*.code-search": true,
|
|
|
|
"vendor/": true
|
|
|
|
},
|
2023-10-24 12:42:05 +00:00
|
|
|
"go.lintTool": "golangci-lint",
|
|
|
|
"go.lintFlags": ["--fast"],
|
2024-06-27 14:52:09 +00:00
|
|
|
"go.buildTags": "test",
|
2023-10-24 12:42:05 +00:00
|
|
|
"eslint.workingDirectories": ["./web"],
|
2024-06-06 13:16:59 +00:00
|
|
|
"prettier.ignorePath": "./web/.prettierignore",
|
|
|
|
// Auto fix
|
|
|
|
"editor.codeActionsOnSave": {
|
|
|
|
"source.fixAll.eslint": "explicit",
|
|
|
|
"source.organizeImports": "never"
|
|
|
|
}
|
2021-12-21 09:52:10 +00:00
|
|
|
}
|