Skip to content

Commit 470a978

Browse files
authored
Default to .hs when saving Haskell files (#198)
Set .hs as the first Haskell source file extension, as VSCode uses the first extension as the default extension when saving files.
1 parent e57d0cd commit 470a978

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## x.x.x - Unreleased
22

33
- Add support for Alex and Happy ([#97](https://github.com/JustusAdam/language-haskell/issues/97)), thanks to [@matthewess](https://github.com/matthewess).
4+
- Default to .hs when saving files ([#197](https://github.com/JustusAdam/language-haskell/issues/197)), thanks to [@noughtmare](https://github.com/noughtmare).
45

56
## 3.4.0 - 25.02.2021
67

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@
6565
"haskell"
6666
],
6767
"extensions": [
68+
".hs",
6869
".hsig",
69-
"hs-boot",
70-
".hs"
70+
"hs-boot"
7171
],
7272
"configuration": "./haskell-configuration.json"
7373
},

0 commit comments

Comments
 (0)