From 26ac56f75d87f52be5322be53a69fb96aa949b8b Mon Sep 17 00:00:00 2001 From: Michael Frank Date: Wed, 12 May 2021 19:39:05 +1200 Subject: [PATCH] Ignore generator-exercise when linting exercise files --- .eslintignore | 1 + .eslintrc.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 .eslintignore diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..46850e4 --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +generator-exercise/ \ No newline at end of file diff --git a/.eslintrc.json b/.eslintrc.json index bbf322d..409b54e 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,5 +1,4 @@ { - "extends": "airbnb-base", "plugins": [ "import" ], @@ -8,5 +7,6 @@ "sourceType": "module" }, "rules": { + "eol-last": ["error", "always"] } }