eslint now receives the glob itself

This commit is contained in:
Rick van Lieshout 2022-08-08 14:48:59 +02:00
parent 4b61b4a370
commit c0a0ea66a6
4 changed files with 9 additions and 4 deletions

View File

@ -2,5 +2,6 @@
. "$(dirname -- "$0")/_/husky.sh"
npm run lint-staged
npm run lint
npm run test-ci
npm run e2e-ci

View File

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.6.1] - 2022-08-08
- eslint now receives the glob itself
## [0.6.0] - 2022-08-08
- Added styled components

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "react-starter-kit",
"version": "0.6.0",
"version": "0.6.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "react-starter-kit",
"version": "0.6.0",
"version": "0.6.1",
"hasInstallScript": true,
"license": "MIT",
"dependencies": {

View File

@ -1,6 +1,6 @@
{
"name": "react-starter-kit",
"version": "0.6.0",
"version": "0.6.1",
"description": "A modern, create-react-app-based, starter kit for React projects",
"keywords": [
"react",
@ -30,7 +30,7 @@
"e2e": "cypress open -d --e2e",
"e2e-ci": "start-server-and-test start http://localhost:3000 cypress-run",
"postinstall": "husky install",
"lint": "GLOBIGNORE='src/types' && eslint src/**",
"lint": "eslint \"src/**\"",
"lint-staged": "lint-staged --relative",
"organize-package-json": "npx format-package -w && npx sort-package-json",
"pretty-quick": "pretty-quick --staged",