Skip to content

Commit ebf9fb7

Browse files
committed
chore: add lint-report target to publishable projects
1 parent 846b855 commit ebf9fb7

File tree

13 files changed

+21
-0
lines changed

13 files changed

+21
-0
lines changed

packages/ci/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"targets": {
77
"build": {},
88
"lint": {},
9+
"lint-report": {},
910
"unit-test": {},
1011
"int-test": {}
1112
},

packages/cli/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"targets": {
77
"build": {},
88
"lint": {},
9+
"lint-report": {},
910
"unit-test": {},
1011
"int-test": {},
1112
"run-help": {

packages/core/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"targets": {
77
"build": {},
88
"lint": {},
9+
"lint-report": {},
910
"unit-test": {},
1011
"int-test": {}
1112
},

packages/create-cli/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"targets": {
77
"build": {},
88
"lint": {},
9+
"lint-report": {},
910
"unit-test": {},
1011
"exec-node": {
1112
"dependsOn": ["build"],

packages/models/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
]
1919
},
2020
"lint": {},
21+
"lint-report": {},
2122
"unit-test": {}
2223
},
2324
"tags": ["scope:shared", "type:util", "publishable"]

packages/nx-plugin/project.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,15 @@
4141
]
4242
}
4343
},
44+
"lint-report": {
45+
"options": {
46+
"lintFilePatterns": [
47+
"packages/nx-plugin/**/*.ts",
48+
"packages/nx-plugin/package.json",
49+
"packages/nx-plugin/generators.json"
50+
]
51+
}
52+
},
4453
"unit-test": {},
4554
"int-test": {}
4655
},

packages/plugin-coverage/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"targets": {
77
"build": {},
88
"lint": {},
9+
"lint-report": {},
910
"unit-test": {},
1011
"int-test": {}
1112
},

packages/plugin-eslint/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"targets": {
77
"build": {},
88
"lint": {},
9+
"lint-report": {},
910
"unit-test": {},
1011
"int-test": {}
1112
},

packages/plugin-js-packages/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"targets": {
77
"build": {},
88
"lint": {},
9+
"lint-report": {},
910
"unit-test": {},
1011
"int-test": {}
1112
},

packages/plugin-jsdocs/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"targets": {
88
"build": {},
99
"lint": {},
10+
"lint-report": {},
1011
"unit-test": {},
1112
"int-test": {}
1213
}

0 commit comments

Comments
 (0)