diff options
author | Pauline <git@ethanlibs.co> | 2023-08-23 01:09:10 -0400 |
---|---|---|
committer | Pauline <git@ethanlibs.co> | 2023-08-23 01:09:10 -0400 |
commit | a7c97d40a34b09d3f488a60106ba82ecd0e8b61e (patch) | |
tree | bb5ec157826d2997731c15a413ce8b669f8debf2 /.vscode/settings.json | |
parent | cec45d997807679e9033538b11e9478874542f15 (diff) | |
download | Nexus-a7c97d40a34b09d3f488a60106ba82ecd0e8b61e.tar.gz Nexus-a7c97d40a34b09d3f488a60106ba82ecd0e8b61e.tar.bz2 Nexus-a7c97d40a34b09d3f488a60106ba82ecd0e8b61e.zip |
initial community health files
Diffstat (limited to '.vscode/settings.json')
-rw-r--r-- | .vscode/settings.json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..726ed79 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,37 @@ +{ + "[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 + }, + "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" + } +} |