-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.json
More file actions
52 lines (52 loc) · 1.55 KB
/
project.json
File metadata and controls
52 lines (52 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"$schema": "node_modules/nx/schemas/project-schema.json",
"name": "@hyperfrontend/workspace",
"description": "A hybrid micro-frontend pattern to embed live web applications with communication protocols, lifecycle, and contract standards.",
"tags": [],
"targets": {
"lint": {
"executor": "@nx/eslint:lint",
"inputs": [
"{workspaceRoot}/.github/workflows/**/*",
"{workspaceRoot}/package.json",
"{workspaceRoot}/README.md",
"{workspaceRoot}/ARCHITECTURE.md",
"{workspaceRoot}/LIBRARY_COMPATIBILITY.md",
"{workspaceRoot}/tsconfig.base.json",
"{workspaceRoot}/eslint.config.cjs",
"{workspaceRoot}/eslint.base.config.cjs",
"{workspaceRoot}/tools/eslint-rules/**/*",
"{workspaceRoot}/libs/**/project.json",
"{workspaceRoot}/plugins/**/project.json"
],
"options": {
"lintFilePatterns": [
".github/workflows",
"package.json",
"README.md",
"ARCHITECTURE.md",
"LIBRARY_COMPATIBILITY.md",
"tsconfig.base.json"
],
"maxWarnings": 0,
"errorOnUnmatchedPattern": false
}
},
"version:all": {
"executor": "@hyperfrontend/package:version-batch",
"options": {
"base": "origin/main",
"head": "HEAD"
}
},
"lint:all": {
"executor": "@hyperfrontend/workspace:lint-report",
"options": {
"outputPath": "lint-output.txt",
"affected": false,
"maxFixes": 5,
"failOnError": true
}
}
}
}