-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.json
More file actions
35 lines (35 loc) · 862 Bytes
/
settings.json
File metadata and controls
35 lines (35 loc) · 862 Bytes
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
{
"files.autoSave": "onFocusChange",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"files.autoSaveWhenNoErrors": true,
"files.autoSaveWorkspaceFilesOnly": true,
"prettier.endOfLine": "lf",
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.trailingComma": "none",
"prettier.tabWidth": 2,
"git.branchProtection": [
"main"
],
"npm.packageManager": "pnpm",
"tailwindCSS.emmetCompletions": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"CodeGPT.apiKey": "CodeGPT Plus Beta",
"cSpell.words": [
"arcstack",
"factman",
"webapi",
"webapis"
],
"typescript.tsdk": "node_modules/typescript/lib",
"json.schemas": [
{
"url": "https://cdn.jsdelivr.net/npm/tsup/schema.json",
"fileMatch": [
"package.json",
"tsup.config.json"
]
}
]
}