Skip to content

Commit

Permalink
Fix linter on CI (#1156)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Barbieri authored Oct 21, 2019
1 parent b7a2745 commit 5f2b28a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"scripts": {
"restart-packager-clean": "watchman watch-del-all && rm -rf $TMPDIR/react-* && yarn start -- --reset-cache",
"start": "node node_modules/react-native/local-cli/cli.js start",
"lint": "eslint '**/*.js' --ignore-path=.prettierignore",
"lint:fix": "eslint '**/*.js' --fix --ignore-path=.prettierignore",
"lint": "eslint '**/*.js' --ignore-path='.prettierignore'",
"lint:fix": "eslint '**/*.js' --fix --ignore-path='.prettierignore'",
"format": "prettier '**/*.{js,json}' --write",
"start:ios": "./scripts/build.sh ios debug",
"start:ios:device": "./scripts/build.sh ios debug --device",
Expand Down Expand Up @@ -46,7 +46,7 @@
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --ignore-path=.prettierignore",
"eslint --ignore-path='.prettierignore'",
"git add"
],
"*.json": [
Expand Down

0 comments on commit 5f2b28a

Please sign in to comment.