You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Well that's a weird one, the only thing that changed about lint is that it now lints JS/JSX files as well. Sounds like it's reading node_modules inside of example despite the ignore?
agilgur5
changed the title
tsdx lint including examples folder goes off the deep end
v0.13 tsdx lint including examples folder goes off the deep end
Mar 23, 2020
Should probably add a .eslintignore to the templates as the reason it didn't dig into example/node_modules previously was incidental (and it probably did, to an extent). Or symlink .gitignore (c.f. #517 )
From there, the difference in pattern is /node_modules/* (v6) vs. /**/node_modules/* (v7). We could change to that early though by adding a default .eslintignore to the templates.
agilgur5
changed the title
v0.13 tsdx lint including examples folder goes off the deep end
v0.13.0 tsdx lint including examples folder goes off the deep end
Oct 17, 2020
Current Behavior
This worked prior to v13.
After v13, I get 100% cpu usage and it never finishes.
tsdx lint src test example --ignore-pattern node_modules
This works fine:
tsdx lint src test --ignore-pattern node_modules
Expected behavior
The command works.
Your environment
The text was updated successfully, but these errors were encountered: