-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into mk/video_frame_rotate
- Loading branch information
Showing
402 changed files
with
54,554 additions
and
49,912 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
exclude_paths: | ||
- '**/3rdparty/**' | ||
- '**/engine/js/cvat-core.min.js' | ||
- '**/engine/js/unzip_imgs.js' | ||
- CHANGELOG.md | ||
- '**/3rdparty/**' | ||
- '**/engine/js/cvat-core.min.js' | ||
- '**/engine/js/unzip_imgs.js' | ||
- CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.*/ | ||
3rdparty/ | ||
node_modules/ | ||
dist/ | ||
data/ | ||
datumaro/ | ||
keys/ | ||
logs/ | ||
static/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,24 @@ | ||
/* | ||
* Copyright (C) 2018 Intel Corporation | ||
* | ||
* SPDX-License-Identifier: MIT | ||
*/ | ||
// Copyright (C) 2018-2020 Intel Corporation | ||
// | ||
// SPDX-License-Identifier: MIT | ||
|
||
module.exports = { | ||
"env": { | ||
"node": false, | ||
"browser": true, | ||
"es6": true, | ||
"jquery": true, | ||
"qunit": true, | ||
module.exports = { | ||
env: { | ||
node: false, | ||
browser: true, | ||
es6: true, | ||
jquery: true, | ||
qunit: true, | ||
}, | ||
"parserOptions": { | ||
"sourceType": "script", | ||
parserOptions: { | ||
sourceType: 'script', | ||
}, | ||
"plugins": [ | ||
"security", | ||
"no-unsanitized", | ||
"no-unsafe-innerhtml", | ||
], | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:security/recommended", | ||
"plugin:no-unsanitized/DOM", | ||
"airbnb-base", | ||
], | ||
"rules": { | ||
"no-await-in-loop": [0], | ||
"global-require": [0], | ||
"no-new": [0], | ||
"class-methods-use-this": [0], | ||
"no-restricted-properties": [0, { | ||
"object": "Math", | ||
"property": "pow", | ||
}], | ||
"no-param-reassign": [0], | ||
"no-underscore-dangle": ["error", { "allowAfterThis": true }], | ||
"no-restricted-syntax": [0, {"selector": "ForOfStatement"}], | ||
"no-continue": [0], | ||
"no-unsafe-innerhtml/no-unsafe-innerhtml": 1, | ||
// This rule actual for user input data on the node.js environment mainly. | ||
"security/detect-object-injection": 0, | ||
"indent": ["warn", 4], | ||
// recently added to airbnb | ||
"max-classes-per-file": [0], | ||
// it was opposite before and our code has been written according to previous rule | ||
"arrow-parens": [0], | ||
// object spread is a modern ECMA standard. Let's do not use it without babel | ||
"prefer-object-spread": [0], | ||
plugins: ['eslint-plugin-header'], | ||
extends: ['eslint:recommended', 'prettier'], | ||
rules: { | ||
'header/header': [2, 'line', [{ | ||
pattern: ' {1}Copyright \\(C\\) (?:20\\d{2}-)?2020 Intel Corporation', | ||
template: ' Copyright (C) 2020 Intel Corporation' | ||
}, '', ' SPDX-License-Identifier: MIT']], | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.*/ | ||
3rdparty/ | ||
node_modules/ | ||
dist/ | ||
data/ | ||
datumaro/ | ||
keys/ | ||
logs/ | ||
static/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
exports.settings = {bullet: '*', paddedTable: false} | ||
exports.settings = { bullet: '*', paddedTable: false }; | ||
|
||
exports.plugins = [ | ||
'remark-preset-lint-recommended', | ||
'remark-preset-lint-consistent', | ||
['remark-preset-lint-markdown-style-guide', 'mixed'], | ||
['remark-lint-no-dead-urls', { skipOffline: true }], | ||
['remark-lint-maximum-line-length', 120], | ||
['remark-lint-maximum-heading-length', 120], | ||
['remark-lint-strong-marker', "*"], | ||
['remark-lint-emphasis-marker', "_"], | ||
['remark-lint-unordered-list-marker-style', "-"], | ||
['remark-lint-ordered-list-marker-style', "."], | ||
['remark-lint-no-file-name-irregular-characters', false], | ||
['remark-lint-list-item-spacing', false], | ||
] | ||
'remark-preset-lint-recommended', | ||
'remark-preset-lint-consistent', | ||
['remark-preset-lint-markdown-style-guide', 'mixed'], | ||
['remark-lint-no-dead-urls', { skipOffline: true }], | ||
['remark-lint-maximum-line-length', 120], | ||
['remark-lint-maximum-heading-length', 120], | ||
['remark-lint-strong-marker', '*'], | ||
['remark-lint-emphasis-marker', '_'], | ||
['remark-lint-unordered-list-marker-style', '-'], | ||
['remark-lint-ordered-list-marker-style', '.'], | ||
['remark-lint-no-file-name-irregular-characters', false], | ||
['remark-lint-list-item-spacing', false], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,22 @@ | ||
{ | ||
"extends": "stylelint-config-standard", | ||
"rules": { | ||
"indentation": 4, | ||
"value-keyword-case": null, | ||
"selector-combinator-space-after": null, | ||
"no-descending-specificity": null, | ||
"at-rule-no-unknown": [true, { | ||
"ignoreAtRules": ["extend"] | ||
}], | ||
"selector-type-no-unknown": [true, { | ||
"ignoreTypes": ["first-child"] | ||
}] | ||
}, | ||
"ignoreFiles": [ | ||
"**/*.js", | ||
"**/*.ts", | ||
"**/*.py" | ||
"extends": "stylelint-config-standard", | ||
"rules": { | ||
"indentation": 4, | ||
"value-keyword-case": null, | ||
"selector-combinator-space-after": null, | ||
"no-descending-specificity": null, | ||
"at-rule-no-unknown": [ | ||
true, | ||
{ | ||
"ignoreAtRules": ["extend"] | ||
} | ||
], | ||
"selector-type-no-unknown": [ | ||
true, | ||
{ | ||
"ignoreTypes": ["first-child"] | ||
} | ||
] | ||
}, | ||
"ignoreFiles": ["**/*.js", "**/*.ts", "**/*.py"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.