-
Notifications
You must be signed in to change notification settings - Fork 0
/
team-project-abbr.code-workspace
49 lines (49 loc) · 1.06 KB
/
team-project-abbr.code-workspace
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
38
39
40
41
42
43
44
45
46
47
48
49
{
"folders": [
{
"path": ".",
"name": "Root"
},
{
"path": "backend",
"name": "Backend"
},
{
"path": "backend/team-proj-abbr",
"name": "Backend / Core (CLI)"
},
{
"path": "frontend",
"name": "Frontend"
},
{
"path": ".github",
"name": "Github Actions"
}
],
"settings": {
"emeraldwalk.runonsave": {
"commands": [
{
"match": "\\.hs$",
"cmd": "brittany --write-mode=inplace ${file} && stylish-haskell -i ${file}"
},
{
"match": "\\.txt$",
"cmd": "stack run team-proj-abbr-cli -- replace --input=\"${file}\" -o=\"${file}\" -k=\"data/kb_example.csv\""
}
]
},
"haskell.formattingProvider": "brittany",
"haskell.checkProject": false,
"markdownlint.config": {
"default": true,
"MD003": { "style": "atx" },
"MD007": { "indent": 4 },
"no-hard-tabs": false,
"no-duplicate-heading": false,
"no-bare-urls": false,
"line-length": false
}
}
}