Skip to content

Commit eb2fe04

Browse files
authored
Updated codeowners and minor cleanups (#8986)
1 parent d8ce29d commit eb2fe04

File tree

4 files changed

+20
-24
lines changed

4 files changed

+20
-24
lines changed

.codacy.yml

-5
This file was deleted.

.eslintrc.cjs

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ module.exports = {
4141
'max-len': ['error', { code: 120, ignoreStrings: true }],
4242
'func-names': 0,
4343
'valid-typeof': 0,
44-
'no-useless-constructor': 0, // sometimes constructor is necessary to generate right documentation in cvat-core
4544
'quotes': ['error', 'single', { "avoidEscape": true }],
4645
'lines-between-class-members': 0,
4746
'class-methods-use-this': 0,

.github/CODEOWNERS

+18-16
Original file line numberDiff line numberDiff line change
@@ -11,47 +11,49 @@
1111
# the global owner(s) will be requested for a review.
1212

1313
# Component: Server
14-
/cvat/ @Marishka17
14+
/cvat/ @SpecLad
15+
/cvat/apps/dataset_manager/ @zhiltsov-max
16+
/cvat/apps/consensus/ @zhiltsov-max
17+
/cvat/apps/quality_control/ @zhiltsov-max
1518

1619
# Component: CVAT SDK/CLI
1720
/cvat-sdk/ @SpecLad
1821
/cvat/schema.yml @SpecLad
1922
/cvat-cli/ @SpecLad
2023

2124
# Component: Documentation
22-
/site/ @mdacoca
23-
/CHANGELOG.md @mdacoca
24-
/README.md @mdacoca
25+
/site/ @bsekachev
26+
/CHANGELOG.md @bsekachev
27+
/README.md @bsekachev
2528

2629
# Component: CVAT UI
2730
/cvat-ui/ @bsekachev
28-
/cvat-data/ @azhavoro
31+
/cvat-data/ @bsekachev
2932
/cvat-canvas/ @bsekachev
3033
/cvat-canvas3d/ @bsekachev
3134
/cvat-core/ @bsekachev
3235

33-
# Component: Datumaro
34-
/datumaro/ @zhiltsov-max
35-
/cvat/apps/dataset_manager/ @zhiltsov-max
36-
3736
# Advanced components (e.g. analytics)
3837
/components/ @azhavoro
3938

4039
# Component: Tests
41-
/tests/ @kirill-sizov
40+
/tests/ @bsekachev
41+
/tests/python/ @zhiltsov-max
4242

4343
# Component: Serverless functions
44-
/serverless/ @kirill-sizov
44+
/serverless/ @bsekachev
4545

4646
# Infrastructure
4747
Dockerfile* @azhavoro
4848
docker-compose* @azhavoro
4949
.* @azhavoro
50+
*.js @bsekachev
5051
*.conf @azhavoro
5152
*.sh @azhavoro
52-
/cvat_proxy/ @azhavoro
53-
/tests/ @azhavoro
54-
/utils/ @azhavoro
55-
/LICENSE @nmanovic
56-
/.github/ @kirill-sizov
53+
/supervisord/ @azhavoro
5754
/helm-chart/ @azhavoro
55+
/utils/ @SpecLad
56+
/.github/ @SpecLad
57+
/dev/ @SpecLad
58+
.regal/ @SpecLad
59+
/LICENSE @nmanovic

cvat-ui/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This is a client UI for Computer Vision Annotation Tool based on React, Redux an
99
- Installing dependencies:
1010

1111
```bash
12-
cd ../cvat-core && yarn --frozen-lockfile && cd - && yarn --frozen-lockfile
12+
yarn --frozen-lockfile
1313
```
1414

1515
- Running development UI server with autorebuild on change
@@ -25,5 +25,5 @@ yarn run build
2525
yarn run build --mode=development # without a minification
2626
```
2727

28-
Important: You also have to run CVAT REST API server (please read `https://docs.cvat.ai/docs/contributing/`)
28+
Important: You also have to run CVAT server (please read `https://docs.cvat.ai/docs/contributing/`)
2929
to correct working since UI gets all necessary data (tasks, users, annotations) from there

0 commit comments

Comments
 (0)