-
- Downloads
Merge branch 'eslint-fix' into 'master'
Eslint fix See merge request !5
No related branches found
No related tags found
Showing
- .eslintignore 5 additions, 0 deletions.eslintignore
- .eslintrc.yml 31 additions, 2 deletions.eslintrc.yml
- .gitlab-ci.yml 1 addition, 1 deletion.gitlab-ci.yml
- .prettierrc.json 5 additions, 1 deletion.prettierrc.json
- README.md 6 additions, 2 deletionsREADME.md
- package.json 14 additions, 15 deletionspackage.json
- src/App.test.tsx 4 additions, 4 deletionssrc/App.test.tsx
- src/App.tsx 21 additions, 25 deletionssrc/App.tsx
- src/index.css 3 additions, 3 deletionssrc/index.css
- src/index.tsx 5 additions, 11 deletionssrc/index.tsx
- src/reportWebVitals.ts 0 additions, 15 deletionssrc/reportWebVitals.ts
- src/setupTests.ts 1 addition, 1 deletionsrc/setupTests.ts
- yarn.lock 11587 additions, 0 deletionsyarn.lock
.eslintignore
0 → 100644
... | ... | @@ -10,24 +10,20 @@ |
"@types/node": "^12.0.0", | ||
"@types/react": "^17.0.0", | ||
"@types/react-dom": "^17.0.0", | ||
"eslint-config-airbnb-typescript": "^12.3.1", | ||
"react": "^17.0.1", | ||
"react-dom": "^17.0.1", | ||
"react-scripts": "4.0.3", | ||
"typescript": "^4.1.2", | ||
"web-vitals": "^1.0.1" | ||
"typescript": "^4.1.2" | ||
}, | ||
"scripts": { | ||
"start": "react-scripts start", | ||
"build": "react-scripts build", | ||
"test": "react-scripts test", | ||
"eject": "react-scripts eject", | ||
"format": "prettier --write ." | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
"react-app", | ||
"react-app/jest" | ||
] | ||
"format": "prettier --write .", | ||
"lint": "eslint .", | ||
"lint:fix": "eslint --fix ." | ||
}, | ||
"browserslist": { | ||
"production": [ | ||
... | ... | @@ -42,14 +38,17 @@ |
] | ||
}, | ||
"devDependencies": { | ||
"prettier": "2.2.1", | ||
"@typescript-eslint/eslint-plugin": "^4.18.0", | ||
"@typescript-eslint/parser": "^4.18.0", | ||
"eslint": "^7.22.0", | ||
"eslint": "^7.2.0", | ||
"eslint-config-airbnb": "^18.2.1", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-jsx-a11y": "^6.4.1", | ||
"eslint-plugin-react": "^7.22.0", | ||
"eslint-plugin-react-hooks": "^4.2.0" | ||
"eslint-config-prettier": "^8.1.0", | ||
"eslint-import-resolver-typescript": "^2.4.0", | ||
"eslint-plugin-import": "^2.21.2", | ||
"eslint-plugin-jsx-a11y": "^6.3.0", | ||
"eslint-plugin-prettier": "^3.3.1", | ||
"eslint-plugin-react": "^7.20.0", | ||
"eslint-plugin-react-hooks": "^4", | ||
"prettier": "2.2.1" | ||
} | ||
} |
src/reportWebVitals.ts
deleted
100644 → 0
yarn.lock
0 → 100644
This diff is collapsed.
Please register or sign in to comment