From 3028cad0258834d9f1a5cb90d007fa454056f33e Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Thu, 11 Feb 2021 11:27:42 -0330 Subject: [PATCH] Add `docs` to list of ignored eslint patterns The `docs` directory includes auto-generated JavaScript that does not follow our lint rules. --- .eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.js b/.eslintrc.js index f93dff4a04e..bfb58ece777 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -11,6 +11,7 @@ module.exports = { '!jest.config.js', 'node_modules', 'dist', + 'docs', 'coverage', '*.d.ts', ],