aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authorPauline <git@ethanlibs.co>2023-08-23 01:09:10 -0400
committerPauline <git@ethanlibs.co>2023-08-23 01:09:10 -0400
commita7c97d40a34b09d3f488a60106ba82ecd0e8b61e (patch)
treebb5ec157826d2997731c15a413ce8b669f8debf2 /.vscode
parentcec45d997807679e9033538b11e9478874542f15 (diff)
downloadNexus-a7c97d40a34b09d3f488a60106ba82ecd0e8b61e.tar.gz
Nexus-a7c97d40a34b09d3f488a60106ba82ecd0e8b61e.tar.bz2
Nexus-a7c97d40a34b09d3f488a60106ba82ecd0e8b61e.zip
initial community health files
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/extensions.json8
-rw-r--r--.vscode/settings.json37
2 files changed, 45 insertions, 0 deletions
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100644
index 0000000..412a742
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,8 @@
+{
+ "recommendations": [
+ "tauri-apps.tauri-vscode",
+ "rust-lang.rust-analyzer",
+ "oscarbeaumont.rspc-vscode",
+ "EditorConfig.EditorConfig"
+ ]
+} \ No newline at end of file
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"
+ }
+}