From 484784b25537f23f392dd246c1f5cefcbe478e4c Mon Sep 17 00:00:00 2001 From: Petr Siegl <18250288+petrsiegl@users.noreply.github.com> Date: Wed, 9 Aug 2023 09:49:33 +0200 Subject: [PATCH] fix(lint): add missing directory to lint command Add new app directory of next.js 13 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d26931f155..6a264228ab 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "build": "cross-env INIT_CWD=$PWD next build && cross-env NODE_OPTIONS='--experimental-json-modules' node ./scripts/postbuild.mjs", "serve": "next start", "analyze": "cross-env ANALYZE=true next build", - "lint": "next lint --fix --dir pages --dir components --dir lib --dir layouts --dir scripts" + "lint": "next lint --fix --dir pages --dir app --dir components --dir lib --dir layouts --dir scripts" }, "dependencies": { "@next/bundle-analyzer": "13.4.12", @@ -75,4 +75,4 @@ ] }, "packageManager": "yarn@3.6.1" -} \ No newline at end of file +}