-
Notifications
You must be signed in to change notification settings - Fork 3
/
pilcrow.code-workspace
59 lines (59 loc) · 1.71 KB
/
pilcrow.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
50
51
52
53
54
55
56
57
58
59
{
"folders": [
{
"name": "CLIENT",
"path": "client"
},
{
"name": "API",
"path": "backend"
},
{
"name": "ROOT",
"path": "./"
},
{
"name": "DOCS",
"path": "docs"
},
{
"name": "PLAYWRIGHT",
"path": "playwright"
}
],
"settings": {
"[markdown]": {
"editor.rulers": [80, 120],
"editor.wordWrap": "wordWrapColumn",
"editor.wordWrapColumn": 120,
"editor.quickSuggestions": {
"other": "on",
"comments": "off",
"strings": "off"
}
},
"git.ignoreLimitWarning": true,
"githubIssues.issueBranchTitle": "${user}/issue${issueNumber}-${sanitizedIssueTitle}",
"githubIssues.useBranchForIssues": "prompt",
"githubPullRequests.defaultMergeMethod": "squash",
"githubPullRequests.focusedMode": true,
"i18n-ally.enabledFrameworks": ["vue"],
"i18n-ally.keystyle": "nested",
"i18n-ally.extract.autoDetect": true,
"i18n-ally.enabledParsers": ["json"],
"i18n-ally.sourceLanguage": "en-US",
"githubPullRequests.ignoredPullRequestBranches": ["master"],
"vitest.commandLine": "yarn test:unit",
"files.exclude": {
"node_modules/": true,
"client/": true,
"backend/": true,
"docs/": true,
"playwright/": true
},
"vitest.include": [
"**/*.vitest.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}"
],
"i18n-ally.localesPaths": ["src/i18n"]
}
}