-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-settings.json
146 lines (146 loc) · 5.68 KB
/
coc-settings.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"coc.preferences.formatOnSaveFiletypes": [
"h",
"json",
"typescript",
"typescriptreact",
"javascriptreact",
"typescript.tsx",
"vue",
"rust",
"go",
"dart"
],
"css.lint.argumentsInColorFunction": "error",
"css.lint.boxModel": "ignore",
"css.lint.compatibleVendorPrefixes": "warning",
"css.lint.duplicateProperties": "error",
"css.lint.emptyRules": "error",
"css.lint.float": "warning",
"css.lint.fontFaceProperties": "warning",
"css.lint.hexColorLength": "error",
"css.lint.idSelector": "error",
"css.lint.ieHack": "error",
"css.lint.importStatement": "ignore",
"css.lint.important": "warning",
"css.lint.propertyIgnoredDueToDisplay": "warning",
"css.lint.universalSelector": "error",
"css.lint.unknownProperties": "warning",
"css.lint.unknownVendorSpecificProperties": "ignore",
"css.lint.vendorPrefix": "warning",
"css.lint.zeroUnits": "error",
"css.validate": true,
"diagnostic.errorSign": "ε",
"diagnostic.infoSign": "•",
"diagnostic.warningSign": "ω",
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
"typescript",
"typescriptreact",
"javascriptreact",
"typescript.tsx",
"vue"
],
"flutter.lsp.initialization.onlyAnalyzeProjectsWithOpenFiles": false,
"html.autoClosingTags": true,
"html.format.enable": true,
"html.format.extraLiners": "",
"html.format.indentHandlebars": true,
"html.format.indentInnerHtml": true,
"html.format.maxPreserveNewLines": 1,
"html.format.preserveNewLines": true,
"html.format.unformatted": "a, abbr, acronym, b, bdo, big, br, button, cite, code, dfn, em, i, img, input, kbd, label, map, object, q, samp, script, select, small, span, strong, sub, sup, textarea, tt, var",
"html.format.wrapAttributes": "auto",
"html.format.wrapAttributesIndentSize": null,
"html.format.wrapLineLength": 0,
"html.validate.scripts": true,
"html.validate.styles": true,
"javascript.format.insertSpaceAfterCommaDelimiter": true,
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"javascript.format.insertSpaceAfterSemicolonInForStatements": true,
"javascript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
"javascript.format.placeOpenBraceOnNewLineForControlBlocks": false,
"javascript.format.placeOpenBraceOnNewLineForFunctions": false,
"javascript.format.semicolons": "insert",
"javascript.preferences.importModuleSpecifier": "relative",
"javascript.preferences.importModuleSpecifierEnding": "minimal",
"javascript.updateImportsOnFileMove.enabled": "always",
"javascript.validate.enable": true,
"json.format.enable": true,
"json.schemaDownload.enable": true,
"languageserver": {
"bash": {
"args": ["start"],
"command": "bash-language-server",
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
},
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "h"],
"initializationOptions": {
"cache": {
"directory": ".ccls-cache"
}
},
"rootPatterns": [".ccls-root", "compile_commands.json", ".git"]
},
"godot": {
"filetypes": ["gdscript", "gd"],
"host": "127.0.0.1",
"port": 6005
},
"golang": {
"command": "gopls",
"filetypes": ["go"],
"initializationOptions": {
"usePlaceholders": true
},
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"]
}
},
"scss.lint.argumentsInColorFunction": "error",
"scss.lint.boxModel": "ignore",
"scss.lint.compatibleVendorPrefixes": "warning",
"scss.lint.duplicateProperties": "error",
"scss.lint.emptyRules": "error",
"scss.lint.float": "warning",
"scss.lint.fontFaceProperties": "warning",
"scss.lint.hexColorLength": "error",
"scss.lint.idSelector": "error",
"scss.lint.ieHack": "error",
"scss.lint.importStatement": "ignore",
"scss.lint.important": "warning",
"scss.lint.propertyIgnoredDueToDisplay": "warning",
"scss.lint.universalSelector": "error",
"scss.lint.unknownProperties": "warning",
"scss.lint.unknownVendorSpecificProperties": "ignore",
"scss.lint.vendorPrefix": "warning",
"scss.lint.zeroUnits": "error",
"scss.validate": true,
"suggest.maxCompleteItemCount": 20,
"tsserver.log": "off",
"typescript.format.insertSpaceAfterCommaDelimiter": true,
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingEmptyBraces": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"typescript.format.insertSpaceAfterSemicolonInForStatements": true,
"typescript.format.insertSpaceBeforeAndAfterBinaryOperators": true,
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": false,
"typescript.format.placeOpenBraceOnNewLineForFunctions": false,
"typescript.format.semicolons": "insert",
"typescript.preferences.importModuleSpecifier": "relative",
"typescript.preferences.importModuleSpecifierEnding": "minimal",
"typescript.suggest.completeFunctionCalls": true,
"typescript.updateImportsOnFileMove.enabled": true,
"typescript.validate.enable": true,
"vetur.format.defaultFormatter.html": "prettier"
}