linters.start
Showing
.eslintignore
0 → 100644
.eslintrc.js
0 → 100644
.eslintrc.json
deleted
100644 → 0
.husky/.gitignore
0 → 100644
.husky/pre-commit
0 → 100755
| ... | ... | @@ -6,7 +6,8 @@ |
| "dev": "next dev", | ||
| "build": "next build", | ||
| "start": "next start", | ||
| "lint": "next lint" | ||
| "lint": "next lint", | ||
| "prepare": "husky install" | ||
| }, | ||
| "dependencies": { | ||
| "@chakra-ui/react": "^2.1.2", | ||
| ... | ... | @@ -21,8 +22,16 @@ |
| "@types/node": "17.0.36", | ||
| "@types/react": "18.0.9", | ||
| "@types/react-dom": "18.0.5", | ||
| "@typescript-eslint/eslint-plugin": "^5.27.0", | ||
| "eslint": "8.16.0", | ||
| "eslint-config-next": "12.1.6", | ||
| "eslint-plugin-es5": "^1.5.0", | ||
| "eslint-plugin-regexp": "^1.7.0", | ||
| "husky": "^8.0.0", | ||
| "lint-staged": ">=10", | ||
| "typescript": "4.7.2" | ||
| }, | ||
| "lint-staged": { | ||
| "*.{js,jsx,ts,tsx}": "eslint --cache --fix" | ||
| } | ||
| } |
This diff is collapsed.
Please register or sign in to comment