aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
blob: 57f2286da5206011a63a5b7f15a7d55470c43f5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    "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
}