-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathsettings.json
57 lines (57 loc) · 1.34 KB
/
settings.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
55
56
57
{
"editor.codeActionsOnSave": {
"quickfix.biome": "explicit",
"source.organizeImports.biome": "explicit",
"source.fixAll.eslint": "explicit"
},
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.quickSuggestions": {
"strings": "on"
},
"eslint.enable": true,
"eslint.workingDirectories": [
{
"pattern": "./apps/*/"
},
{
"pattern": "./packages/*/"
}
],
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"files.associations": {
"*.css": "tailwindcss"
},
"[javascript]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[javascriptreact]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[typescriptreact]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"[html]": {
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
},
"yaml.schemas": {
"https://www.artillery.io/schema.json": [
"file:///home/feedme/sushi/sushiswap/apis/router/test/load.yml"
]
},
"typescript.tsdk": "node_modules/typescript/lib"
}