From 91681bcdaa47a66168e459a7ad24f1c99eb078aa Mon Sep 17 00:00:00 2001 From: Alex Castillo <63383168+xelacast@users.noreply.github.com> Date: Fri, 3 May 2024 12:59:14 -0600 Subject: [PATCH] fix: linting --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 0c2da95..116f892 100644 --- a/package.json +++ b/package.json @@ -12,8 +12,8 @@ "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject", - "lint": "eslint src/**/*.{js,jsx,ts,tsx,json}", - "lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx,json}'", + "lint": "eslint . --ext .js,.json,.cjs", + "lint:fix": "eslint --fix . --ext .js,.json,.cjs", "format": "prettier --write '**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc", "clean": "rm -rf node_modules/ && rm -rf packages/flowtest-electron/node_modules/ && rm -rf packages/flowtest-cli" },