diff --git a/apps/developer-hub/eslint.config.js b/apps/developer-hub/eslint.config.js index 7035c57cb4..0a20ea5ad0 100644 --- a/apps/developer-hub/eslint.config.js +++ b/apps/developer-hub/eslint.config.js @@ -1 +1,8 @@ -export { nextjs as default } from "@cprussin/eslint-config"; +import { nextjs } from "@cprussin/eslint-config"; + +export default [ + ...nextjs, + { + ignores: [".source/**"], + }, +]; diff --git a/apps/developer-hub/turbo.json b/apps/developer-hub/turbo.json index 13036bf4a4..9d0df22013 100644 --- a/apps/developer-hub/turbo.json +++ b/apps/developer-hub/turbo.json @@ -13,12 +13,14 @@ "fix:lint": { "dependsOn": [ "//#install:modules", + "^build", + "build", "fix:lint:eslint", "fix:lint:stylelint" ] }, "fix:lint:eslint": { - "dependsOn": ["//#install:modules", "^build"], + "dependsOn": ["//#install:modules", "^build", "build"], "cache": false }, "fix:lint:stylelint": { @@ -32,7 +34,7 @@ "dependsOn": ["test:lint:eslint", "test:lint:stylelint"] }, "test:lint:eslint": { - "dependsOn": ["//#install:modules", "^build"] + "dependsOn": ["//#install:modules", "^build", "build"] }, "test:lint:stylelint": { "dependsOn": ["//#install:modules"]