Disabled linting while building

This commit is contained in:
Alejandro Celaya 2022-03-25 17:27:41 +01:00
parent eaa1a2f2ca
commit ea95e8e7b5

View file

@ -12,9 +12,9 @@
"lint:fix": "npm run lint:css:fix && npm run lint:js:fix",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:js:fix": "npm run lint:js -- --fix",
"start": "react-scripts start",
"start": "DISABLE_ESLINT_PLUGIN=true react-scripts start",
"serve:build": "serve ./build",
"build": "react-scripts build && node scripts/replace-version.js",
"build": "DISABLE_ESLINT_PLUGIN=true react-scripts build && node scripts/replace-version.js",
"build:dist": "npm run build && node scripts/create-dist-file.js",
"test": "node scripts/test.js --env=jsdom --colors --verbose",
"test:coverage": "npm run test -- --coverage --coverageReporters=text --coverageReporters=text-summary",