Skip to content

Commit fdd5749

Browse files
committed
build(lint): ignore *.d.ts files at the project root
These will always be package entries which shouldn't need linting and furthermore break the build sometimes on the `import/no-unresolved` rule when linting happens before a build is complete as they forward exports from modules in the `dist` directory which is created during the build.
1 parent ae03e82 commit fdd5749

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules/
2+
coverage/
3+
dist/
4+
/*.d.ts

0 commit comments

Comments
 (0)