From fd94b1edcbebcd4c3997b0da5fca28aa7f1de848 Mon Sep 17 00:00:00 2001 From: Marco Vettorello Date: Wed, 2 Oct 2019 17:19:14 +0200 Subject: [PATCH] build(eslint): enable linting hidden folders (#401) ESlint by default ignore folders with a name that start with a dot like .storybook and .playground. This will un-ignore those folders allowing eslint capabilities on editor also on these folders. --- .eslintignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .eslintignore diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000000..b107309fe9 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,3 @@ +!/.storybook +!/.playground +