From 9a215693e3bde78ba0e40d0b0e7a4e86cc272b48 Mon Sep 17 00:00:00 2001 From: nullcount <70529195+nullcount@users.noreply.github.com> Date: Sat, 6 Jan 2024 14:17:12 -0500 Subject: [PATCH] fix: Remove .js files from linting (#1049) Co-authored-by: count-null <70529195+count-null@users.noreply.github.com> --- frontend/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/package.json b/frontend/package.json index 3583b53f..94d07491 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -7,8 +7,8 @@ "dev": "node --max-old-space-size=4096 ./node_modules/.bin/webpack --watch --progress --mode development", "test": "jest", "build": "webpack --mode production", - "lint": "eslint src/**/*.{js,ts,tsx}", - "lint:fix": "eslint --fix 'src/**/*.{js,ts,tsx}'", + "lint": "eslint src/**/*.{ts,tsx}", + "lint:fix": "eslint --fix 'src/**/*.{ts,tsx}'", "format": "prettier --write '**/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc" }, "keywords": [],