Skip to content

Commit

Permalink
Add VSCode settings to project
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnbastiaan committed Dec 30, 2021
1 parent ffc9a98 commit 808e1ca
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .vscode/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Please do not add opiniated settings, unless they're recommended by the
style guide.
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["haskell.haskell"]
}
26 changes: 26 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"cSpell.words": [
"NOINLINE",
"WHNF",
"fmap"
],
"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.rulers": [
80,
90
],
"editor.tabSize": 2
}

0 comments on commit 808e1ca

Please sign in to comment.