diff --git a/.gitignore b/.gitignore index 77a114c..0c3d163 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ node_modules .env .env.* !.env.example +.turbo diff --git a/package.json b/package.json index 31a8de4..42bc3a7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,9 @@ "name": "eslit-monorepo", "private": true, "scripts": { - "lint": "ESLINT_USE_FLAT_CONFIG=true eslint .", + "lint": "turbo run lint", + "lint:monorepo": "ESLINT_USE_FLAT_CONFIG=true eslint .", + "test": "", "prepare": "husky install" }, "author": "", diff --git a/turbo.json b/turbo.json new file mode 100644 index 0000000..d89db50 --- /dev/null +++ b/turbo.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://turbo.build/schema.json", + "pipeline": { + "lint": {}, + "test": {} + } +}