Skip to content

Commit

Permalink
eslint fix auto
Browse files Browse the repository at this point in the history
  • Loading branch information
blackravenx committed May 14, 2024
1 parent 198d689 commit 30cae57
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
5 changes: 4 additions & 1 deletion capguru/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"outputs": ["{options.outputFile}"],
"options": {
"fix": true
}
},
"test": {
"executor": "@nx/jest:jest",
Expand Down
4 changes: 3 additions & 1 deletion capsolver/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {"fix": true}
"options": {
"fix": true
}
},
"test": {
"executor": "@nx/jest:jest",
Expand Down
5 changes: 4 additions & 1 deletion captcha-client/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
"targets": {
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"]
"outputs": ["{options.outputFile}"],
"options": {
"fix": true
}
},
"test": {
"executor": "@nx/jest:jest",
Expand Down
4 changes: 3 additions & 1 deletion twocaptcha/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {"fix": true}
"options": {
"fix": true
}
},
"test": {
"executor": "@nx/jest:jest",
Expand Down

0 comments on commit 30cae57

Please sign in to comment.