Skip to content

Commit fd622bf

Browse files
committed
chore: wip
1 parent 7188c2d commit fd622bf

File tree

1 file changed

+11
-52
lines changed

1 file changed

+11
-52
lines changed
Lines changed: 11 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,11 @@
11
{
22
// JavaScript
3-
"prettier.enable": false, // Disable the default formatter, use eslint instead
4-
// Silent the stylistic rules in you IDE, but still auto fix them
5-
"eslint.rules.customizations": [
6-
{ "rule": "style/*", "severity": "off" },
7-
{ "rule": "*-indent", "severity": "off" },
8-
{ "rule": "*-spacing", "severity": "off" },
9-
{ "rule": "*-spaces", "severity": "off" },
10-
{ "rule": "*-order", "severity": "off" },
11-
{ "rule": "*-dangle", "severity": "off" },
12-
{ "rule": "*-newline", "severity": "off" },
13-
{ "rule": "*quotes", "severity": "off" },
14-
{ "rule": "*semi", "severity": "off" }
15-
],
16-
// Enable eslint for all supported languages
17-
"eslint.validate": [
18-
"javascript",
19-
"javascriptreact",
20-
"typescript",
21-
"typescriptreact",
22-
"vue",
23-
"stx",
24-
"html",
25-
"markdown",
26-
"json",
27-
"jsonc",
28-
"yaml",
29-
"toml"
30-
],
31-
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
3+
"prettier.enable": false, // Disable the default formatter, use eslint instead
4+
"editor.defaultFormatter": "biomejs.biome",
325
"editor.formatOnSave": false,
336
"editor.codeActionsOnSave": {
34-
"source.fixAll.eslint": "explicit",
35-
"source.organizeImports": "never"
7+
"source.fixAll.biome": "explicit",
8+
"source.organizeImports.biome": "explicit"
369
},
3710

3811
// TypeScript
@@ -41,12 +14,12 @@
4114

4215
// JSON
4316
"[jsonc]": {
44-
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
17+
"editor.defaultFormatter": "biomejs.biome"
4518
},
4619

4720
// YAML
4821
"[yaml]": {
49-
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
22+
"editor.defaultFormatter": "biomejs.biome"
5023
},
5124

5225
// Shell
@@ -59,9 +32,6 @@
5932
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
6033
"editor.formatOnSave": true
6134
},
62-
"markdownlint.ignore": [
63-
"CHANGELOG.md"
64-
],
6535
"markdownlint.config": {
6636
"default": true,
6737
"MD033": {
@@ -82,7 +52,7 @@
8252
"typescript.preferGoToSourceDefinition": true,
8353
"eslint.experimental.useFlatConfig": true,
8454
"[stx]": {
85-
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
55+
"editor.defaultFormatter": "biomejs.biome"
8656
},
8757
"files.associations": {
8858
"buddy": "typescript",
@@ -111,13 +81,8 @@
11181
},
11282
"explorer.confirmDragAndDrop": false,
11383
"todo-tree.highlights.enabled": true,
114-
"cSpell.ignorePaths": [
115-
"node_modules",
116-
"lang/de.yml"
117-
],
118-
"cSpell.dictionaries": [
119-
"stacks-dictionary"
120-
],
84+
"cSpell.ignorePaths": ["node_modules", "lang/de.yml"],
85+
"cSpell.dictionaries": ["stacks-dictionary"],
12186
"cSpell.diagnosticLevel": "Hint",
12287
"cSpell.customDictionaries": {
12388
"stacks": {
@@ -129,12 +94,6 @@
12994
"custom": true // enable the `custom` dictionary
13095
},
13196
"terminal.integrated.scrollback": 10000,
132-
"grammarly.files.include": [
133-
"**/README.md",
134-
"**/readme.md",
135-
"**/*.txt"
136-
],
137-
"grammarly.files.exclude": [
138-
"**/dictionary.txt"
139-
]
97+
"grammarly.files.include": ["**/README.md", "**/readme.md", "**/*.txt"],
98+
"grammarly.files.exclude": ["**/dictionary.txt"]
14099
}

0 commit comments

Comments
 (0)