spacedrive/.vscode/settings.json

88 lines
2.2 KiB
JSON
Raw Normal View History

2021-09-22 06:27:02 +00:00
{
2022-05-23 04:07:35 +00:00
"cSpell.words": [
"actix",
"bpfrpt",
"callees",
2022-05-23 04:07:35 +00:00
"consts",
2022-05-29 05:23:50 +00:00
"countup",
2022-05-23 04:07:35 +00:00
"creationdate",
"Deque",
2022-06-22 05:53:07 +00:00
"dotenv",
"dotenvy",
"fontsource",
"ianvs",
2022-05-23 04:07:35 +00:00
"ipfs",
"Keepsafe",
2022-06-22 05:53:07 +00:00
"nodestate",
"normalise",
"overscan",
2022-05-23 04:07:35 +00:00
"pathctx",
"prismjs",
"proptype",
"quicktime",
"repr",
"rescan",
2022-05-23 04:07:35 +00:00
"Roadmap",
"subpackage",
2022-05-23 04:07:35 +00:00
"svgr",
"tailwindcss",
2022-09-04 20:42:04 +00:00
"tanstack",
"titlebar",
2022-05-23 04:07:35 +00:00
"tsparticles",
2022-05-29 05:23:50 +00:00
"unlisten",
2022-09-04 22:58:16 +00:00
"upsert",
"valtio"
2022-05-23 04:07:35 +00:00
],
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
2022-05-23 04:07:35 +00:00
},
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.diagnostics.experimental.enable": false,
"tailwindCSS.experimental.classRegex": [
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"], // cva(....)`...`
["clsx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"], // clsx(....)`...`
"tw\\.[^`]+`([^`]*)`", // tw.xxx`...`
"tw\\(.*?\\).*?`([^`]*)", // tw(....)`...`
"tw`([^`]*)", // tw`...` (mobile)
"twStyle\\(([^)]*)\\)", // twStyle(....) (mobile)
["styled\\([^,)]+,([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"] // styled(....)`...` (mobile)
],
"search.exclude": {
"node_modules": true,
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
// Hiding these folders bcs they create a lot of noise in the search results
"**/*.contentlayer": true,
"**/*.next": true,
"**/dist": true,
"apps/mobile/ios/Pods": true,
"apps/mobile/android": true,
"apps/mobile/ios": true
},
"eslint.workingDirectories": [
"apps/desktop",
"apps/landing",
"apps/mobile",
"interface",
"packages/client",
"packages/config",
"packages/ui"
],
"eslint.lintTask.enable": true,
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
".npmrc": ".nvmrc, .yarnrc.yml",
".gitignore": ".eslintignore, .prettierignore",
"README.md": "CONTRIBUTING.md, CODE_OF_CONDUCT.md",
"Cargo.toml": "Cargo.lock",
".eslintrc.js": ".eslintcache",
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, pnpm-workspace.yaml, .pnp.cjs, .pnp.loader.mjs",
"tsconfig.json": "tsconfig.*.json"
}
2022-03-04 00:20:00 +00:00
}