-
Notifications
You must be signed in to change notification settings - Fork 0
/
coc-settings.json
38 lines (38 loc) · 1.21 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
{
"python.pythonPath": "/home/bryan/.pyenv/shims/python3",
"python.jediEnabled": false,
"pyright.enable": true,
"python.linting.enabled": true,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.formatting.blackPath": "${env:HOME}/.local/bin/black",
"python.linting.mypyPath": "${env:HOME}/.local/bin/mypy",
"python.linting.pylintPath": "${env:HOME}/.local/bin/pylint",
"python.linting.flake8Path": "${env:HOME}/.local/bin/flake8",
"python.linting.mypyEnabled": true,
"python.formatting.provider": "black",
"python.linting.pylintEnabled": false,
"python.linting.enabled": true,
"python.linting.banditPath": "${env:HOME}/.local/bin/bandit",
"python.linting.banditEnabled": true,
"python.linting.flake8Args": ["--ignore=E501"],
"solargraph.completion": true,
"solargraph.symbols": true,
"solargraph.definitions": true,
"coc.preferences.formatOnSaveFiletypes": [
"javascript",
"typescript",
"typescriptreact",
"json",
"javascriptreact",
"typescript.tsx"
],
"eslint.filetypes": [
"javascript",
"typescript",
"typescriptreact",
"javascriptreact",
"typescript.tsx"
],
"coc.preferences.diagnostic.virtualText": true
}