-
-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathsettings.json
More file actions
56 lines (56 loc) · 1.69 KB
/
Copy pathsettings.json
File metadata and controls
56 lines (56 loc) · 1.69 KB
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
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.prettierPath": "./node_modules/prettier",
"biome.enabled": false,
"editor.codeActionsOnSave": [
"editor.formatOnSave",
"source.fixAll.eslint",
"source.sortImports"
],
"eslint.codeActionsOnSave.rules": [
"object-shorthand",
"@typescript-eslint/consistent-type-imports",
"import/no-duplicates",
"@typescript-eslint/no-import-type-side-effects",
"curly"
],
"typescript.preferences.preferTypeOnlyAutoImports": true,
"typescript.preferences.autoImportFileExcludePatterns": [
"out",
// too many overlapping names, easy to import in schema/arktype where we don't want it
// should just import as * as ts when we need it in attest
"typescript"
],
"typescript.preferences.autoImportSpecifierExcludeRegexes": [
// has a "type" export
"^(node:)?os$"
],
"typescript.tsserver.experimental.enableProjectDiagnostics": true,
"typescript.tsdk": "./node_modules/typescript/lib",
// IF YOU UPDATE THE MOCHA CONFIG HERE, PLEASE ALSO UPDATE package.json/mocha AND ark/repo/mocha.jsonc
"mochaExplorer.nodeArgv": ["--conditions", "ark-ts", "--import", "tsx"],
// ignore attest since it requires type information
"mochaExplorer.ignore": ["ark/attest/**/*"],
"mochaExplorer.require": "ark/repo/mocha.globalSetup.ts",
"mochaExplorer.timeout": 0,
"mochaExplorer.env": {
"ATTEST_skipTypes": "true"
},
"testExplorer.useNativeTesting": true,
"search.exclude": {
"**/out": true,
"**/.next": true,
"**/.source": true,
"**/components/dts": true,
"**/apiData.ts": true
},
"editor.quickSuggestions": {
"strings": "on"
},
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
}
}