Skip to content

Commit

Permalink
fix: πŸ› allow files under .storybook to be linted
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmy-guzman committed Apr 13, 2024
1 parent 3b7bd53 commit 1fd9a39
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/__snapshots__/factory.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2192,6 +2192,7 @@ exports[`jimmyDotCodes > should create default configuration 1`] = `
"**/auto-import?(s).d.ts",
"**/components.d.ts",
"**/vite.config.ts.*.mjs",
"!.storybook",
],
},
]
Expand Down
1 change: 1 addition & 0 deletions src/__snapshots__/index.spec.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -2192,6 +2192,7 @@ exports[`should create default configuration 1`] = `
"**/auto-import?(s).d.ts",
"**/components.d.ts",
"**/vite.config.ts.*.mjs",
"!.storybook",
],
},
]
Expand Down
2 changes: 2 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ export const GLOB_IGNORES = [
"**/auto-import?(s).d.ts",
"**/components.d.ts",
"**/vite.config.ts.*.mjs",

"!.storybook",
];

export const GLOB_JS = "**/*.?([cm])js";
Expand Down

0 comments on commit 1fd9a39

Please sign in to comment.