diff --git a/CHANGELOG.md b/CHANGELOG.md index d9ee25f4a4f7a26cdeb686722c15444b3417f73e..b38365f8b7574772ce09e40dc3b99904344cbdf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Ability to login into CVAT-UI with token from api/v1/auth/login () -- Added eslint-prettier integration & code autoformat in precommiting hook - Added layout grids toggling ('ctrl + alt + Enter') - Added password reset functionality () - Ability to work with data on the fly (https://github.com/opencv/cvat/pull/2007) diff --git a/cvat-ui/package.json b/cvat-ui/package.json index 282289b80812762dda2d97f4ee8aae4897f7088f..dbc1c5610e237e5fd83f1626b3a255653ba4fea4 100644 --- a/cvat-ui/package.json +++ b/cvat-ui/package.json @@ -36,12 +36,10 @@ "eslint-plugin-react": "^7.17.0", "eslint-plugin-react-hooks": "^1.7.0", "html-webpack-plugin": "^3.2.0", - "husky": "^4.3.0", "lint-staged": "^10.4.0", "node-sass": "^4.13.0", "postcss-loader": "^3.0.0", "postcss-preset-env": "^6.7.0", - "prettier": "2.1.2", "react-svg-loader": "^3.0.3", "sass-loader": "^8.0.0", "style-loader": "^1.0.0", @@ -84,17 +82,5 @@ "redux-devtools-extension": "^2.13.8", "redux-logger": "^3.0.6", "redux-thunk": "^2.3.0" - }, - "husky": { - "hooks": { - "pre-commit": "lint-staged" - } - }, - "lint-staged": { - "*.{html,css,scss,json,md}": "prettier --write", - "*.{js,ts,tsx}": [ - "eslint --fix", - "prettier --write" - ] } }