Revision de4d4c1dd15c800d4fe0e1adda0b57075bec3ba6 authored by Yigit Ozen on 01 December 2023, 14:59:48 UTC, committed by GitHub on 01 December 2023, 14:59:48 UTC
Fixes #7182 by including pre-release versions as explained in the
[helm docs](https://helm.sh/docs/chart_template_guide/function_list/#working-with-prerelease-versions).
1 parent 6e32868
Raw File
settings.json
{
    "eslint.probe": [
        "javascript",
        "typescript",
        "typescriptreact"
    ],
    "eslint.onIgnoredFiles": "warn",
    "eslint.workingDirectories": [
        {
            "directory": "${cwd}",
        },
        {
            "pattern":  "cvat-*"
        },
        {
            "directory": "tests",
            "!cwd": true
        }
    ],
    "npm.exclude": "**/.env/**",
    "licenser.license": "Custom",
    "licenser.customHeader": "Copyright (C) @YEAR@ CVAT.ai Corporation\n\nSPDX-License-Identifier: MIT",
    "files.trimTrailingWhitespace": true,
    "sqltools.connections": [
        {
            "previewLimit": 50,
            "driver": "SQLite",
            "name": "cvat",
            "database": "${workspaceFolder:cvat}/db.sqlite3"
        }
    ],
    "python.defaultInterpreterPath": "${workspaceFolder}/.env/",
    "python.linting.enabled": true,
    "python.linting.pylintEnabled": true,
    "python.linting.pycodestyleEnabled": false,
    "python.testing.pytestArgs": [
        "--rootdir","${workspaceFolder}/tests/"
    ],
    "python.testing.unittestEnabled": false,
    "python.testing.pytestEnabled": true,
    "python.testing.pytestPath": "${workspaceFolder}/.env/bin/pytest",
    "python.testing.cwd": "${workspaceFolder}/tests"
}
back to top