Silence lots of max-len lint warnings

This commit is contained in:
Aarni Halinen
2021-03-04 19:43:04 +02:00
parent 3b35dbc5f3
commit 931c69d500
18 changed files with 258 additions and 51 deletions
+2 -2
View File
@@ -22,8 +22,8 @@
"scripts": {
"build": "next build",
"lint": "npm run lint:es && npm run lint:css",
"lint:es": "eslint \"./src/**/*.{ts,tsx}\"",
"lint:es:fix": "eslint --fix \"./src/**/*.{ts,tsx}\"",
"lint:es": "eslint src/ --ext .ts,.tsx",
"lint:es:fix": "eslint --fix . --ext .ts,.tsx",
"lint:css": "stylelint \"./src/**/*.{ts,tsx}\"",
"start": "next dev",
"start-prod": "next start --port ${SERVER_PORT:=80}",