-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
71 lines (71 loc) · 1.95 KB
/
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
{
"diffEditor.ignoreTrimWhitespace": false,
"editor.multiCursorModifier": "ctrlCmd",
"isort.check": true,
"isort.args": [
"--settings-file=setup.cfg",
"--line-length=120",
"--profile=black",
"--force-grid-wrap=0",
"--multi-line 3"
],
"flake8.args": [
"--config=setup.cfg",
"--ignore=W503,",
"--max-line-length=120",
"--exclude=.git,__pycache__"
],
"autoDocstring.docstringFormat": "numpy",
"pylint.args": [
"--rcfile=pylintrc",
"--disable=C0302,C0325,R0801,R0912,R0913,R0914,R0915,",
"--max-line-length=120",
"--ignore=.git,__pycache__"
],
"mypy-type-checker.reportingScope": "workspace",
"mypy-type-checker.args": [
"--config-file=setup.cfg",
"--exclude=(.git|__pycache__)"
],
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.variableTypes": true,
"python.analysis.typeCheckingMode": "basic",
"fortran-ls.autocompletePrefix": true,
"fortran-ls.hoverSignature": true,
"fortran-ls.lowercaseIntrinsics": true,
"fortran-ls.variableHover": true,
"fortran-ls.notifyInit": true,
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "d"],
"after": ["d", "d"]
},
{
"before": ["<C-n>"],
"commands": [":nohl"]
},
{
"before": ["K"],
"commands": ["lineBreakInsert"],
"silent": true
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-c>": false,
"<C-f>": false,
"<C-x>": false
}
}