This repository has been archived by the owner on Dec 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdialtone.code-workspace
73 lines (70 loc) · 1.64 KB
/
dialtone.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"folders": [
{
"path": "."
}
],
"settings": {
// FILES
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true
},
// SEARCH
// Note that gitignored files are automatically excluded from search. Do not add files
// here that are already gitignored.
"search.exclude": {
"**/package-lock.json": true,
"**/locale": true
},
// SPACING
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.trimAutoWhitespace": true,
"editor.rulers": [120],
"files.trimTrailingWhitespace": true,
"files.eol": "\n",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": "explicit",
"source.fixAll.eslint": "explicit"
},
"javascript.format.enable": false,
// LINTING / FORMATTING
"css.validate": false,
"less.validate": false,
"stylelint.validate": [
"css",
"less",
],
"eslint.format.enable": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"vue",
"vue-html",
"html"
],
"vetur.completion.tagCasing": "kebab",
"vetur.format.enable": false,
"vetur.validation.script": false,
"vetur.validation.template": false,
"yaml.format.enable": true,
"yaml.format.singleQuote": true,
"yaml.schemas": {
"https://json.schemastore.org/github-workflow.json": "file:///.github/workflows/deploy.yml"
},
"markdownlint.config": {
"default": true,
"line-length": false,
"no-duplicate-heading": false,
"no-trailing-punctuation": false,
"no-inline-html": false,
"first-line-h1": false
},
"[markdown]": {
"editor.rulers": []
}
}
}