Skip to content

Commit

Permalink
feat: remove prettier steps
Browse files Browse the repository at this point in the history
  • Loading branch information
MauriceNino committed Aug 28, 2022
1 parent 30244e7 commit 7ee1bfb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 39 deletions.
11 changes: 0 additions & 11 deletions apps/api/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,6 @@
"lintFilePatterns": ["apps/api/**/*.ts"]
}
},
"format": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/api",
"command": "prettier --check ."
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/apps/api"],
Expand All @@ -56,10 +49,6 @@
{
"target": "lint",
"projects": "self"
},
{
"target": "format",
"projects": "self"
}
]
}
Expand Down
15 changes: 1 addition & 14 deletions apps/cli/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,25 +19,12 @@
}
}
},
"lint": {
"test": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/cli/**/*.ts"]
}
},
"test": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/cli",
"command": "prettier --check ."
},
"dependsOn": [
{
"target": "lint",
"projects": "self"
}
]
}
},
"tags": []
Expand Down
15 changes: 1 addition & 14 deletions apps/view/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,25 +64,12 @@
}
}
},
"lint": {
"test": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/view/**/*.{ts,tsx,js,jsx}"]
}
},
"test": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/view",
"command": "prettier --check ."
},
"dependsOn": [
{
"target": "lint",
"projects": "self"
}
]
}
},
"tags": []
Expand Down

0 comments on commit 7ee1bfb

Please sign in to comment.