Skip to content

Commit

Permalink
Merge branch 'rust-game'
Browse files Browse the repository at this point in the history
  • Loading branch information
phisn committed Mar 28, 2024
2 parents 8ebf49a + 44626d7 commit 72a8c72
Show file tree
Hide file tree
Showing 373 changed files with 15,175 additions and 18,977 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,6 @@ yarn-error.log*

# webstorms
.idea

# Added by cargo
/target
7 changes: 7 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": []
}
23 changes: 18 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{
"editor.formatOnSave": true,
// enable per-language (here: Prettier as formatter)
"editor.defaultFormatter": "esbenp.prettier-vscode",
"files.exclude": {
"**/.turbo": true,
"**/dist": true,
Expand All @@ -11,7 +9,22 @@
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file"
},
"rust-analyzer.linkedProjects": [
"./packages/rust-game/Cargo.toml",
"./packages/rust-game/Cargo.toml",
"./packages/rust-game/Cargo.toml",
"./packages/rust-game-rl/Cargo.toml"
],
"rust-analyzer.showUnlinkedFileNotification": false
}
Loading

0 comments on commit 72a8c72

Please sign in to comment.