Skip to content

Commit

Permalink
Add VSCode settings.json to project
Browse files Browse the repository at this point in the history
Should prevent whitespace wars in PRs
  • Loading branch information
martijnbastiaan committed Jan 31, 2024
1 parent 19897d8 commit 3dc0ecf
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"files.exclude": {
"**/*.dyn_hi": true,
"**/*.dyn_o": true,
"**/*.hi": true,
"**/*.o": true,
"**/*.o-boot": true,
"**/*.hi-boot": true,
"**/dist-newstyle": true,
"**/.stack-work": true,
"**/.ghc.environment.*": true,
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"editor.tabSize": 2,
"[rust]": {
"editor.tabSize": 4
},
"[haskell]": {
"editor.formatOnSave": false
},
}

0 comments on commit 3dc0ecf

Please sign in to comment.