From e82df3e0e0dc369d26faa4fea6c8f1d4ac5fd47d Mon Sep 17 00:00:00 2001 From: Ali Sabzevari Date: Sun, 8 Aug 2021 17:45:50 +0200 Subject: [PATCH] chore: rearrage lint scripts in package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fe8ee22e16..2d933cfcfe 100644 --- a/package.json +++ b/package.json @@ -29,9 +29,9 @@ "lint:fix": "lerna run lint:fix", "lint:fix:changed": "lerna run --concurrency 1 --stream lint:fix --since HEAD --exclude-dependents", "lint:examples": "eslint ./examples/**/*.js", + "lint:examples:fix": "eslint ./examples/**/*.js --fix", "lint:getting-started": "eslint ./getting-started/**/*.{js,ts}", "lint:getting-started:fix": "eslint ./getting-started/**/*.{js,ts} --fix", - "lint:examples:fix": "eslint ./examples/**/*.js --fix", "lint:markdown": "./node_modules/.bin/markdownlint $(git ls-files '*.md') -i ./CHANGELOG.md", "lint:markdown:fix": "./node_modules/.bin/markdownlint $(git ls-files '*.md') -i ./CHANGELOG.md --fix", "reset": "lerna clean -y && rm -rf node_modules && npm i && npm run compile && npm run lint:fix"