-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoc-settings.json
More file actions
35 lines (35 loc) · 1.02 KB
/
coc-settings.json
File metadata and controls
35 lines (35 loc) · 1.02 KB
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
{
"python.jediEnabled": false,
"python.formatting.provider": "ruff",
"yaml.format.enable": true,
"[yaml]": {
"editor.tabsize": 2
},
"yaml.customTags": ["!Ref", "!Sub"],
"[javascript]": {
"editor.tabsize": 2
},
"snippets.extends": {
"typescript": ["javascript"]
},
"snippets.ultisnips.directories": [
"UltiSnips",
"~/dotfiles/.config/coc/ultisnips"
],
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": true,
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingJsxExpressionBraces": true,
"python.linting.enabled": true,
"pyright.inlayHints.variableTypes": false,
"pyright.inlayHints.functionReturnTypes": false,
"pyright.organizeimports.provider": "ruff",
"python.linting.ruffEnabled": true,
"python.sortImports.path": "ruff",
"coc.preferences.formatOnSaveFiletypes": [
"css",
"javascript",
"typescript",
"yaml"
],
"prettier.printWidth": 119
}