Merged in chore/eslint-curly-braces (pull request #3304)

Chore/eslint curly braces

* Add eslint rule for curly braces

* run eslint --fix for all files


Approved-by: Linus Flood
This commit is contained in:
Joakim Jäderberg
2025-12-08 07:56:21 +00:00
parent 5986828580
commit de4b3c1c3c
54 changed files with 139 additions and 104 deletions

View File

@@ -6,8 +6,8 @@
"scripts": {
"build": "next build",
"dev": "NODE_OPTIONS=--openssl-legacy-provider PORT=3000 NEXT_PUBLIC_PORT=3000 next dev --turbo",
"lint": "next typegen && eslint --max-warnings 0 . && tsgo --noEmit",
"lint:fix": "next typegen && eslint --fix --max-warnings 0 . && tsgo --noEmit",
"lint": "next typegen && eslint --max-warnings 0 .",
"lint:fix": "next typegen && eslint --fix --max-warnings 0 .",
"start": "node .next/standalone/server.js",
"test:setup": "yarn build && yarn start",
"test:e2e": "playwright test",