-
Notifications
You must be signed in to change notification settings - Fork 3
/
extensions.json
54 lines (54 loc) · 1.52 KB
/
extensions.json
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
50
51
52
53
54
// Keep in alphabetical order
{
"recommendations": [
"davidanson.vscode-markdownlint",
"dprint.dprint",
"eamodio.gitlens",
"emeraldwalk.runonsave",
"ms-python.autopep8",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-vscode.powershell",
"pkief.material-icon-theme",
"redhat.vscode-yaml",
"tamasfe.even-better-toml"
],
"unwantedRecommendations": [
/*
* Don't recommend by default for this workspace
*/
// Not a web project
"christian-kohler.npm-intellisense",
"ms-edgedevtools.vscode-edge-devtools",
// This is a Git project
"johnstoncode.svn-scm",
// Prefer using VSCode itself as a text editor
"vscodevim.vim",
/*
* Must disable in this workspace
* https://github.com/microsoft/vscode/issues/40239
*/
// Use workspace version
"ms-vscode.vscode-typescript-next",
// VSCode has implemented an optimized version
"coenraads.bracket-pair-colorizer",
"coenraads.bracket-pair-colorizer-2",
"shardulm94.trailing-spaces",
// Lots of conflicts
"esbenp.prettier-vscode",
// Replaced by ESLint
"eg2.tslint",
"ms-vscode.vscode-typescript-tslint-plugin",
// Replaced by
"mikestead.dotenv",
// Obsoleted by Pylance
"ms-pyright.pyright",
// Not configurable per workspace, tends to conflict with other linters
// Use eslint-plugin-sonarjs for JS/TS projects
"sonarsource.sonarlint-vscode",
// Use Ruff instead
"ms-python.flake8",
"ms-python.isort",
"ms-python.pylint"
]
}