aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 795cf25382e067eef3b26d32cb66b72815ecbec4 (plain)
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
{
    "[rust]": {
        "editor.defaultFormatter": "rust-lang.rust-analyzer"
    },
    "rust-analyzer.procMacro.enable": true,
    "rust-analyzer.diagnostics.experimental.enable": false,
    "tailwindCSS.experimental.classRegex": [
        ["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"], // cva(....)`...`
		"tw\\.[^`]+`([^`]*)`", // tw.xxx`...`
		"tw\\(.*?\\).*?`([^`]*)", // tw(....)`...`
    ],
    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true,
        "**/*.code-search": true,
		"**/pnpm-lock.yaml": true,
		"**/.gitignore": true
    },
    "eslint.lintTask.enable": true,
    "eslint.workingDirectories": [

    ],
    "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, LICENSE",
		"Cargo.toml": "Cargo.lock",
		".eslintrc.js": ".eslintcache",
        ".prettierrc.*": ".rustfmt.toml, .gitattributes, .editorconfig, .clippy.toml",
		"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, pnpm-workspace.yaml, .pnp.cjs, .pnp.loader.mjs",
		"tsconfig.json": "tsconfig.*.json",
		"flake.nix": "shell.nix, flake.lock, Cargo.nix"
    }
}