-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.json
More file actions
37 lines (36 loc) · 864 Bytes
/
Copy pathsettings.json
File metadata and controls
37 lines (36 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint",
"editor.formatOnSave": true,
},
// 抑止設定
"markdownlint.config": {
"MD010": false, // タブ
"MD013": false // 長い行
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"[haskell]": {
"editor.defaultFormatter": "haskell.haskell",
"editor.formatOnSave": true
},
"haskell.manageHLS": "PATH", // nix
"haskell.formattingProvider": "ormolu",
"haskell.plugin.ormolu.config.external": true,
"haskell.ghcupExecutablePath": "",
"haskell.upgradeGHCup": false,
"haskell.serverExecutablePath": "haskell-language-server",
"github.copilot.enable": {
"haskell": false
},
"cSpell.words": [
"foldl",
"foldr",
"scanl",
"zipWith",
"unwords",
"unlines",
"zipWith",
"elems"
],
}