aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
blob: 3d19a40b45948bc2f670fd2676d12a09405992b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
    "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": [
        "--config=.flake8"
    ]
}