aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
blob: 969dd1de044486352a81a6535a0b4dc9c9464f5b (plain)
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
{
    "editor.rulers": [
        72, // comments and docstrings
        79, // desirable code length
        100 // maximum code length
    ],
    "python.testing.unittestArgs": [
        "-v",
        "-s",
        "./sources/pyside6/tests",
        "-p",
        "*_test.py"
    ],
    "python.testing.pytestEnabled": false,
    "python.testing.unittestEnabled": true,
    "flake8.args": [
        "--ignore=E115,E265,W503",
        "--max-line-length=100"
    ],
    "flake8.ignorePatterns": [
        "rc_*.py",
        "*_rc.py",
        "ui_*.py",
    ]
}