Skip to content

Commit

Permalink
Update dependencies in cargo.lock, updates and adjusts to tailwind cu…
Browse files Browse the repository at this point in the history
…stom classes
  • Loading branch information
SeraphyBR authored Aug 26, 2024
1 parent 22b1aeb commit 0962b93
Show file tree
Hide file tree
Showing 11 changed files with 473 additions and 380 deletions.
6 changes: 5 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"recommendations": [
"rust-lang.rust-analyzer",
"bradlc.vscode-tailwindcss"
"bradlc.vscode-tailwindcss",
"tamasfe.even-better-toml",
"esbenp.prettier-vscode",
"aaron-bond.better-comments",
"arrterian.nix-env-selector"
]
}
78 changes: 44 additions & 34 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,46 @@
{
"emmet.includeLanguages": {
"rust": "html",
"*.rs": "html"
},
"tailwindCSS.includeLanguages": {
"rust": "html",
"*.rs": "html"
},
"files.associations": {
"*.rs": "rust"
},
"editor.quickSuggestions": {
"other": "on",
"comments": "on",
"strings": true
},
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.formatOnSave": true
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
},
"css.validate": false,
"html.autoClosingTags": true,
"rust-analyzer.semanticHighlighting.punctuation.enable": true,
"tailwindCSS.files.exclude": [
"**/.git/**",
"**/node_modules/**",
"**/dist/**",
],
"nixEnvSelector.nixFile": "${workspaceFolder}/shell.nix",
"rust-analyzer.check.command": "clippy"
"emmet.includeLanguages": {
"rust": "html",
"*.rs": "html"
},
"tailwindCSS.includeLanguages": {
"javascript": "javascript",
"rust": "html",
"*.rs": "html"
},
"files.associations": {
"*.rs": "rust"
},
"editor.quickSuggestions": {
"other": "on",
"comments": "on",
"strings": true
},
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.formatOnSave": true
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,

"tailwindCSS.experimental.classRegex": ["'@apply([^']*)':"]
},
"css.validate": false,
"html.autoClosingTags": true,
"rust-analyzer.semanticHighlighting.punctuation.enable": true,
"tailwindCSS.files.exclude": [
"**/.git/**",
"**/node_modules/**",
"**/dist/**"
],
"nixEnvSelector.nixFile": "${workspaceFolder}/shell.nix",
"rust-analyzer.check.command": "clippy",
"tailwindCSS.classAttributes": [
"class",
"className",
"ngClass",
"class:list",
".*Classes.*"
]
}
Loading

0 comments on commit 0962b93

Please sign in to comment.