Skip to content

Commit

Permalink
Release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nmanovic authored Sep 12, 2019
2 parents 26da003 + fda7c1a commit 242b3df
Show file tree
Hide file tree
Showing 264 changed files with 42,496 additions and 2,349 deletions.
1 change: 1 addition & 0 deletions .codacy.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
exclude_paths:
- '**/3rdparty/**'
- '**/engine/js/cvat-core.min.js'
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@
/.vscode
/db.sqlite3
/keys
**/node_modules
cvat-ui
cvat-canvas
10 changes: 9 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@
"eslint:recommended",
"plugin:security/recommended",
"plugin:no-unsanitized/DOM",
"airbnb",
"airbnb-base",
],
"rules": {
"no-await-in-loop": [0],
"global-require": [0],
"no-new": [0],
"class-methods-use-this": [0],
"no-restricted-properties": [0, {
Expand All @@ -41,5 +43,11 @@
// 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],
},
};
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ LICENSE text
*.conf text
*.mimetypes text
*.sh text eol=lf
components/openvino/eula.cfg text eol=lf

*.avi binary
*.bmp binary
Expand Down
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Project Specific
/data/
/models/
/share/
/static/
/db.sqlite3
Expand All @@ -15,7 +16,11 @@ node_modules

# Ignore temporary files
docker-compose.override.yml
/.vscode
__pycache__
*.pyc
._*

# Ignore development npm files
node_modules

.DS_Store
Loading

0 comments on commit 242b3df

Please sign in to comment.