You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
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@ Intel 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"
|
|
}
|