This repository has been archived by the owner on May 30, 2024. It is now read-only.
forked from qchateau/conan-center-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathccb.code-workspace
49 lines (49 loc) · 1.56 KB
/
ccb.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"folders": [
{
"path": "."
}
],
"settings": {
"eslint.validate": ["vue", "html", "javascript"],
// disable format of JS by vetur, formatting is handled by "source.fixAll.eslint"
"vetur.format.defaultFormatter.js": "none",
"vetur.format.defaultFormatter.css": "prettier",
"vetur.format.defaultFormatter.html": "prettyhtml",
"vetur.format.defaultFormatter.less": "prettier",
"vetur.format.defaultFormatter.postcss": "prettier",
"vetur.format.defaultFormatter.scss": "prettier",
"vetur.format.defaultFormatter.stylus": "stylus-supremacy",
"vetur.format.defaultFormatter.ts": "none",
"[javascript]": {
// disable format on save at vscode level, formatting is handled by "source.fixAll.eslint"
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[vue]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
}
},
"[python]": {
"editor.formatOnSave": true
},
"python.envFile": "${workspaceFolder}/.env",
"python.formatting.provider": "black",
"python.linting.lintOnSave": true,
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"files.trimTrailingWhitespace": true,
"formattingToggle.affects": ["formatOnSave"]
},
"extensions": {
"recommendations": [
"xyz.local-history", // local history
"dbaeumer.vscode-eslint", // JS+vue lint, format and autofix
"octref.vetur" // vue support and format
]
}
}