diff --git a/config/env.development b/config/env.development index 6f38b126bd..e78b4c445d 100644 --- a/config/env.development +++ b/config/env.development @@ -187,16 +187,6 @@ DEPENDENCY_DISCOVERY_URL=http://localhost/v1/dependency-discovery # NODE_ENV should be one of "development" or "production" NODE_ENV=development -# PROXY_FRONTEND=1 will allow proxying the Next dev server (http://localhost:8000) -# through our node server (http://localhost:3000). Useful for testing locally. -# To run: -# -# 1. set PROXY_FRONTEND=1 in the .env -# 2. run the web server: `pnpm start` -# 3. run the Next dev server: `pnpm develop` -# 4. open http://localhost:3000/ and you'll get content from http://localhost:8000 -PROXY_FRONTEND= - # LOG_LEVEL is used to set the level of debugging for the logs. # info, error and debug are commonly used levels. See http://getpino.io/#/docs/api?id=level for more info on levels. # to completely disable all logs, use silent. diff --git a/package.json b/package.json index cd94644b4b..6bf299d174 100644 --- a/package.json +++ b/package.json @@ -13,9 +13,7 @@ "build": "pnpm turbo run build", "dev": "pnpm dev --prefix src/web/app --", "develop": "pnpm dev", - "eslint": "TIMING=1 eslint --ignore-path .gitignore", - "eslint-fix": "eslint --ignore-path .gitignore --fix", - "lint": "pnpm turbo run lint && pnpm eslint", + "lint": "pnpm turbo run lint", "clean": "pnpm turbo run clean && pnpm -r exec rm -rf node_modules", "prettier": "prettier --write \"./**/*.{md,jsx,json,html,css,js,yml,ts,tsx}\"", "prettier-check": "prettier --check \"./**/*.{md,jsx,json,html,css,js,yml,ts,tsx}\"",