several minor changes in user management

This commit is contained in:
Philipp Lohner 2021-05-17 20:54:58 +02:00
parent 08fd48fee8
commit f9de07f3ab
3 changed files with 23224 additions and 795 deletions

View file

@ -1,10 +1,11 @@
env: env:
browser: true browser: true
extends: extends:
- 'eslint:recommended' - "eslint:recommended"
- 'plugin:react/recommended' - "plugin:react/recommended"
- 'plugin:@typescript-eslint/recommended' - "plugin:@typescript-eslint/recommended"
parser: '@typescript-eslint/parser' - "plugin:prettier/recommended"
parser: "@typescript-eslint/parser"
parserOptions: parserOptions:
ecmaFeatures: ecmaFeatures:
jsx: true jsx: true
@ -12,7 +13,7 @@ parserOptions:
sourceType: module sourceType: module
plugins: plugins:
- react - react
- '@typescript-eslint' - "@typescript-eslint"
rules: rules:
no-use-before-define: off no-use-before-define: off
"@typescript-eslint/no-use-before-define": "@typescript-eslint/no-use-before-define":

File diff suppressed because it is too large Load diff

View file

@ -9,12 +9,12 @@
"@material-ui/lab": "^4.0.0-alpha.57", "@material-ui/lab": "^4.0.0-alpha.57",
"@testing-library/user-event": "^7.2.1", "@testing-library/user-event": "^7.2.1",
"graphql": "^15.3.0", "graphql": "^15.3.0",
"react": "^16.13.1", "notistack": "^1.0.3",
"react": "^16.14.0",
"react-dom": "^16.13.1", "react-dom": "^16.13.1",
"react-router-dom": "^5.2.0", "react-router-dom": "^5.2.0",
"react-scripts": "^4.0.2", "react-scripts": "^4.0.2",
"typescript": "^3.8", "typescript": "^3.8"
"notistack": "^1.0.3"
}, },
"devDependencies": { "devDependencies": {
"@testing-library/jest-dom": "^5.11.4", "@testing-library/jest-dom": "^5.11.4",
@ -26,12 +26,13 @@
"@types/react-router-dom": "^5.1.5", "@types/react-router-dom": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^4.12.0", "@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0", "@typescript-eslint/parser": "^4.12.0",
"eslint-config-prettier": "^7.1.0", "eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.22.0", "eslint-plugin-react": "^7.22.0",
"husky": "^4.3.6", "husky": "^4.3.6",
"jest-environment-jsdom-sixteen": "^1.0.3", "jest-environment-jsdom-sixteen": "^1.0.3",
"lint-staged": "^10.5.3", "lint-staged": "^10.5.3",
"prettier": "2.2.1" "prettier": "^2.2.1"
}, },
"scripts": { "scripts": {
"start": "react-scripts start", "start": "react-scripts start",