Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
867c80d
refactor: move models-transformers into tools
Dec 2, 2025
594f451
refactor: add zod2md-nx-plugin
Dec 2, 2025
00256ee
refactor: wip
Dec 2, 2025
9112bf0
refactor: adjust plugin code
Dec 2, 2025
c7882cb
refactor: wip
Dec 2, 2025
1cf9a7a
refactor: wip
Dec 2, 2025
12a12d5
refactor: wip
Dec 2, 2025
4d629f4
refactor: wip
Dec 2, 2025
fb004e1
refactor: wip
Dec 2, 2025
8253323
Update tools/zod2md-nx-plugin/eslint.config.js
BioPhoton Dec 3, 2025
670b232
Update tools/zod2md-nx-plugin/README.md
BioPhoton Dec 3, 2025
a4cf4b9
refactor: wip
Dec 3, 2025
b02a6a0
refactor: wip
Dec 3, 2025
4d6c335
refactor: wip
Dec 3, 2025
ce500c7
refactor: wip
Dec 3, 2025
1a158f1
Merge branch 'main' into chore/add-zod2md-nx-plugin
Dec 3, 2025
25c79f4
Merge remote-tracking branch 'origin/main' into chore/add-zod2md-nx-p…
Dec 4, 2025
1daa238
Merge branch 'main' into chore/add-zod2md-nx-plugin
Dec 5, 2025
9068301
refactor: wip
Dec 5, 2025
c0385c4
refactor: wip
Dec 5, 2025
df9cdd2
refactor: wip
Dec 5, 2025
765ff26
refactor: wip
Dec 5, 2025
c332127
refactor: wip
Dec 5, 2025
551b791
refactor: wip
Dec 5, 2025
7f32330
refactor: wip
Dec 5, 2025
3598f8a
refactor: wip
Dec 5, 2025
8d90f87
refactor: wip
Dec 5, 2025
0180436
Update eslint.config.js
BioPhoton Dec 11, 2025
e4a4864
Update tools/zod2md-jsdocs/docs/zod2md-jsdocs-ts-transformer.md
BioPhoton Dec 11, 2025
880e997
refactor: remove disabled rules
Dec 11, 2025
8db0605
refactor: use esm syntax
Dec 11, 2025
0afd552
Merge branch 'refs/heads/main' into chore/add-zod2md-nx-plugin
Dec 15, 2025
c022da1
refactor: add back input rule for zod2md config
Dec 15, 2025
3fc4b33
refactor: fix README.md
Dec 15, 2025
806c743
refactor: remove deps
Dec 15, 2025
c0f0423
refactor: move ts-patch target to zod2md-jsdocs
Dec 15, 2025
df99141
refactor: adjust exports
Dec 15, 2025
a5e0547
refactor: fix plugin in ts format npm issues
Dec 15, 2025
35df593
refactor: fix typing
Dec 15, 2025
b2c3729
refactor: fix docs
Dec 15, 2025
14649d8
refactor: fix docs
Dec 15, 2025
3b16810
Merge branch 'main' into chore/add-zod2md-nx-plugin
Dec 15, 2025
0064e04
refactor: wip
Dec 15, 2025
f918b5c
refactor: wip
Dec 15, 2025
918fa8d
refactor: lock versions
Dec 15, 2025
e5b8c2c
refactor: revert lock versions
Dec 15, 2025
34eed75
refactor: update nx versions
Dec 15, 2025
c9d546d
refactor: update nx versions 2
Dec 15, 2025
3fc54f6
refactor: update nx versions 2
Dec 15, 2025
ff6c610
refactor: fix Nx update
Dec 16, 2025
fa94f93
refactor: fix Nx update unit tests
Dec 16, 2025
e88d62d
refactor: fix Nx update lint
Dec 16, 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
14 changes: 14 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,18 @@ export default tseslint.config(
],
},
},
{
// in bin files, imports with side effects are allowed
files: ['**/bin/**/*.ts', '**/bin/**/*.js'],
rules: {
'import/no-unassigned-import': 'off',
},
},
{
// in *nx-plugin.ts files path imports cant be default export style (@TODO understand relation to swc)
files: ['**/*nx-plugin.ts'],
rules: {
'unicorn/import-style': 'off',
},
},
);
3 changes: 2 additions & 1 deletion nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"options": {
"command": "eslint",
"args": [
"'{projectRoot}/**/*.ts'",
"'{projectRoot}/**/*.{ts,cjs,mjs,js}'",
"{projectRoot}/package.json",
"--config={projectRoot}/eslint.config.js",
"--max-warnings=0",
Expand Down Expand Up @@ -344,6 +344,7 @@
"releaseTagPattern": "v{version}"
},
"plugins": [
"./tools/zod2md-jsdocs/src/nx-plugin.ts",
{
"plugin": "@push-based/nx-verdaccio",
"options": {
Expand Down
Loading
Loading