From 7d9a841ff6a5d3e9650519e79ebc01f39e7d4116 Mon Sep 17 00:00:00 2001 From: Thierry Parlier <48807534+Angra974@users.noreply.github.com> Date: Wed, 13 Dec 2023 19:30:25 +0400 Subject: [PATCH] Add dev script to skip linting and create-react-play when starting to develop the app (#1400) Co-authored-by: Thierry Parlier --- .gitconfig | 2 ++ package.json | 1 + 2 files changed, 3 insertions(+) create mode 100644 .gitconfig diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 000000000..44f5b9f77 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,2 @@ + [core] + filemode = false diff --git a/package.json b/package.json index 1c7e68c0c..9ff600742 100644 --- a/package.json +++ b/package.json @@ -83,6 +83,7 @@ "workbox-window": "^7.0.0" }, "scripts": { + "dev": "react-scripts start", "start:nolint": "npx --yes create-react-play@latest -p && react-scripts start", "start": "npx --yes create-react-play@latest -p && npm run lint && react-scripts start", "build": "npx --yes create-react-play@latest -p && react-scripts build",