blob: 1d0d5ec8fa9c92799aea06ac6ea64193b7cadfbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.linting.pylintArgs": [
"--max-line-length=160"
],
"python.formatting.autopep8Args": [
"--max-line-length=160"
],
"python.linting.flake8Args": [
"--max-line-length=160"
],
"python.linting.pycodestyleArgs": [
"--max-line-length=160"
],
"python.linting.pycodestyleEnabled": true,
"terminal.integrated.scrollback": 100000,
}
|