Skip to content

Commit d2bd5f4

Browse files
committed
feat(generator): add jsx generator
1 parent 6f70de4 commit d2bd5f4

File tree

13 files changed

+597
-8
lines changed

13 files changed

+597
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ npm-debug.log
44

55
# Default Output Directory
66
out
7+
dist

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# Tests files
22
src/generators/api-links/test/fixtures/
33
*.snapshot
4+
5+
dist

eslint.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import jsdoc from 'eslint-plugin-jsdoc';
44
import globals from 'globals';
55

66
export default [
7+
{ ignores: ['dist', 'out'] },
78
// @see https://eslint.org/docs/latest/use/configure/configuration-files#specifying-files-and-ignores
89
{
910
files: ['src/**/*.mjs', 'bin/**/*.mjs'],

0 commit comments

Comments
 (0)