From fdd574902d3ae9d7a792c2d962aa00d33c044ebd Mon Sep 17 00:00:00 2001 From: Jamie Rolfs Date: Wed, 5 Aug 2020 15:03:30 -0700 Subject: [PATCH] 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. --- .eslintignore | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .eslintignore diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 00000000..36cefd6e --- /dev/null +++ b/.eslintignore @@ -0,0 +1,4 @@ +node_modules/ +coverage/ +dist/ +/*.d.ts