Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
51f7a89
chore: add eslint formatter for multiple formats
BioPhoton Aug 27, 2025
d3e41aa
chore: stricter plugin usage
BioPhoton Aug 27, 2025
ee9aae1
chore: remove package
BioPhoton Aug 27, 2025
4166956
refactor(eslint-multi-formatter): fix lint
BioPhoton Aug 27, 2025
8208532
Update tools/eslint-multi-format/README.md
BioPhoton Aug 28, 2025
d37c4a3
Update tools/eslint-multi-format/src/lib/utils.ts
BioPhoton Aug 28, 2025
6e0c734
Merge branch 'main' into tools/custom-eslint-formatter
BioPhoton Aug 28, 2025
7b090ca
Merge remote-tracking branch 'origin/tools/custom-eslint-formatter' i…
BioPhoton Aug 28, 2025
1592f62
refactor: full refactor + add tests
BioPhoton Aug 29, 2025
56cf11e
refactor: use error helper
BioPhoton Aug 29, 2025
53c5796
refactor: fix lint
BioPhoton Aug 29, 2025
65c365e
Merge branch 'main' into tools/custom-eslint-formatter
BioPhoton Sep 1, 2025
4de3d33
refactor: fix lint formatter usage
BioPhoton Sep 1, 2025
d3351f0
refactor: fix lint formatter lint
BioPhoton Sep 1, 2025
a786407
refactor: adjust lint targets
BioPhoton Sep 1, 2025
e1554d6
refactor: remove packages
BioPhoton Sep 1, 2025
944b141
refactor: fix lint
BioPhoton Sep 1, 2025
28bc74d
refactor: revert env vars
BioPhoton Sep 2, 2025
4e154e1
refactor: adjust GH ci action
BioPhoton Sep 2, 2025
7fa3e53
refactor: adjust GH ci action 2
BioPhoton Sep 2, 2025
72b3f2c
refactor: adjust targets
BioPhoton Sep 2, 2025
6e0d998
refactor: adjust targets 3
BioPhoton Sep 2, 2025
689d671
refactor: adjust targets 4
BioPhoton Sep 2, 2025
26b80b8
refactor: adjust targets 5
BioPhoton Sep 2, 2025
6372d63
refactor: adjust targets 6
BioPhoton Sep 2, 2025
3d306da
chore: revert targets
BioPhoton Sep 2, 2025
914b146
Merge branch 'main' into tools/custom-eslint-formatter
BioPhoton Sep 2, 2025
17f8029
chore: fix lint setup
BioPhoton Sep 2, 2025
9a73ab9
refactor: fix async
BioPhoton Sep 2, 2025
37ea315
refactor: copy code
BioPhoton Sep 2, 2025
563c8ec
refactor: use copy code
BioPhoton Sep 2, 2025
fe10e39
refactor: wip
BioPhoton Sep 2, 2025
e0270c6
refactor: rename package from eslint-formatter-multiple-formats to es…
BioPhoton Sep 2, 2025
7981046
refactor: fix targets
BioPhoton Sep 2, 2025
6c499cc
refactor: fix lint
BioPhoton Sep 2, 2025
ccdb58d
refactor: fix lint target
BioPhoton Sep 2, 2025
16a3977
refactor: use plugin to set up targets
BioPhoton Sep 3, 2025
97e1e6c
chore: adjust lint target
BioPhoton Sep 3, 2025
44ddced
chore: fix pkg install
BioPhoton Sep 3, 2025
8eb075a
chore: fix lint
BioPhoton Sep 3, 2025
28b76f0
Merge branch 'main' into tools/custom-eslint-formatter
BioPhoton Sep 3, 2025
f56ba9e
Update tools/eslint-formatter-multi/package.json
BioPhoton Sep 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"inputs": ["default", "{workspaceRoot}/eslint.config.?(c)js"],
"outputs": ["{projectRoot}/.eslint/eslint-report*.json"],
"cache": true,
"executor": "@nx/linter:eslint",
"executor": "@nx/eslint:lint",
"options": {
"errorOnUnmatchedPattern": false,
"maxWarnings": 0,
Expand All @@ -71,6 +71,19 @@
]
}
},
"lint-formatter": {
"inputs": ["default", "{workspaceRoot}/eslint.config.?(c)js"],
"outputs": ["{projectRoot}/.eslint/eslint-report*.json"],
"cache": true,
"executor": "nx:run-commands",
"options": {
"command": "nx lint {projectName}",
"args": ["--format=./dist/eslint-multi-format/index.js"],
Comment thread
BioPhoton marked this conversation as resolved.
Outdated
"env": {
"ESLINT_FORMATTER_CONFIG": "{\"outputDir\":\"{projectRoot}/.eslint\"}"
}
}
},
"nxv-pkg-install": {
"parallelism": false
},
Expand Down Expand Up @@ -164,6 +177,21 @@
"filterByTags": ["publishable"]
}
}
},
{
"plugin": "@nx/vite/plugin",
"options": {
"buildTargetName": "build",
"testTargetName": "test",
"serveTargetName": "serve",
"devTargetName": "dev",
"previewTargetName": "preview",
"serveStaticTargetName": "serve-static",
"typecheckTargetName": "typecheck",
"buildDepsTargetName": "build-deps",
"watchDepsTargetName": "watch-deps"
},
"include": ["tools/eslint-multi-format/**"]
}
Comment thread
BioPhoton marked this conversation as resolved.
Outdated
],
"nxCloudId": "65d4d862d2adb16a45a4bc7c"
Expand Down
Loading
Loading