Skip to content

Commit

Permalink
chore: no error on missing lint files in experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
dyladan committed Sep 10, 2021
1 parent f3033ed commit bcfb4c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -30,10 +30,10 @@
"lint:changed": "lerna run --concurrency 1 --stream lint --since HEAD --exclude-dependents",
"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": "eslint --no-error-on-unmatched-pattern ./examples/**/*.js",
"lint:examples:fix": "eslint --no-error-on-unmatched-pattern ./examples/**/*.js --fix",
"lint:getting-started": "eslint --no-error-on-unmatched-pattern ./getting-started/**/*.{js,ts}",
"lint:getting-started:fix": "eslint --no-error-on-unmatched-pattern ./getting-started/**/*.{js,ts} --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",
Expand Down

0 comments on commit bcfb4c0

Please sign in to comment.