-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
58 lines (58 loc) · 1.43 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
{
"jedi.enable": true,
"jedi.executable.command": "/home/niels/.pyenv/versions/nvim/bin/jedi-language-server",
"yaml.schemas": {
"https://raw.githubusercontent.com/docker/compose/master/compose/config/config_schema_v2.0.json": "**/docker-compose*.yml"
},
"diagnostic-languageserver.filetypes": {
"python": "pylint"
},
"diagnostic-languageserver.linters": {
"pylint": {
"sourceName": "pylint",
"command": "pylint",
"args": [
"--output-format",
"text",
"--score",
"no",
"--msg-template",
"'{line}:{column}:{category}:{msg} ({msg_id}:{symbol})'",
"%file"
],
"formatPattern": [
"^(\\d+?):(\\d+?):([a-z]+?):(.*)$",
{
"line": 1,
"column": 2,
"security": 3,
"message": 4
}
],
"rootPatterns": [".git", "pyproject.toml", "setup.py"],
"securities": {
"informational": "hint",
"refactor": "info",
"convention": "info",
"warning": "warning",
"error": "error",
"fatal": "error"
},
"offsetColumn": 1,
"formatLines": 1
}
},
"diagnostic-languageserver.formatFiletypes": {
"python": ["black", "isort"]
},
"diagnostic-languageserver.formatters": {
"black": {
"command": "black",
"args": ["black", "-q", "-"]
},
"isort": {
"command": "isort",
"args": ["-q", "-"]
}
}
}