From fbc8ea2bdf49fe85a559d25a00d40b8909296a86 Mon Sep 17 00:00:00 2001 From: Futago-za Ryuu Date: Wed, 4 Apr 2018 18:24:05 +0100 Subject: [PATCH] Add an ignore file The gulp file is usuaully used to glob the JavaScript files and run ESLint on them, but editor based instances of ESLint (e.g. VSCode extension) don't read the gulp file, so can't tell which files to ignore unless specified in the official .eslintignore file. --- .eslintignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .eslintignore diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..ef5e1d4 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,5 @@ +/.nyc_output +/browser +/coverage +/node_modules +/test/server/vendor