From 36c3529006870ad5106a57c2e2d9ce8ca43b8673 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Tue, 21 Apr 2020 19:46:29 -0500 Subject: [PATCH] Fix eslint error --- app/gabsocial/features/forms/index.js | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/gabsocial/features/forms/index.js b/app/gabsocial/features/forms/index.js index 6bb5a0412..5feaba5c6 100644 --- a/app/gabsocial/features/forms/index.js +++ b/app/gabsocial/features/forms/index.js @@ -216,4 +216,5 @@ export class TextInput extends ImmutablePureComponent { ); } + } diff --git a/package.json b/package.json index 18f3d2d61..2c3718d66 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "build:development": "NODE_ENV=development npx webpack --config webpack/development.js", "build:production": "NODE_ENV=production npx webpack --config webpack/production.js", "manage:translations": "node ./webpack/translationRunner.js", - "test": "${npm_execpath} run test:lint:js && ${npm_execpath} run test:jest", + "test": "${npm_execpath} run test:lint && ${npm_execpath} run test:jest", "test:lint": "${npm_execpath} run test:lint:js && ${npm_execpath} run test:lint:sass", "test:lint:js": "npx eslint --ext=js . --cache", "test:lint:sass": "npx sass-lint -v",