From 62114b807bcde847753b38a365fe3db45ca5c618 Mon Sep 17 00:00:00 2001 From: Brian Ng Date: Tue, 29 May 2018 09:59:12 -0500 Subject: [PATCH] Remove unneeded prettier call in `make fix` --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 7e9fae2bd0..79fded79c2 100644 --- a/Makefile +++ b/Makefile @@ -52,8 +52,6 @@ lint: ./node_modules/.bin/eslint scripts $(SOURCES) '*.js' '**/.*.js' --format=codeframe --rulesdir="./scripts/eslint_rules" fix: - # The config is hardcoded because otherwise prettier searches for it and also picks up some broken package.json files from tests - ./node_modules/.bin/prettier --config .prettierrc --write --ignore-path .eslintignore '**/*.json' ./node_modules/.bin/eslint scripts $(SOURCES) '*.js' '**/.*.js' --format=codeframe --fix --rulesdir="./scripts/eslint_rules" clean: test-clean