Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More helpful lint command that doesn't hide errors in cannot fix #42

Merged
merged 1 commit into from
Jan 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"clean": "rm -rf build/",
"compile": "npm run clean && npm run -- tsc --outDir build/ && (cd provider && npm install && npm run compile) && cp -R ./provider/build/ ./build/provider/ && cp package.json README.md ./build/",
"version": "auto-changelog --template ./changelog_template.hbs -p && git add CHANGELOG.md",
"lint": "eslint 'index.ts' 'test/**/*.ts' jest.config.js --quiet --fix",
"lint": "eslint 'index.ts' 'test/**/*.ts' jest.config.js --fix",
"lint-check": "eslint 'index.ts' 'test/**/*.ts' jest.config.js --max-warnings 0"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"compile": "npm run clean && npm run -- tsc --outDir build/ --declaration false && npm run get-sops && cp -R ./sops ./build/",
"quick-compile": "npm run -- tsc --outDir build/ --declaration false && ([[ -f ./sops ]] || npm run get-sops) && cp ./sops ./build/",
"test": "jest",
"lint": "eslint 'index.ts' 'tests/**/*.ts' jest.config.js --quiet --fix",
"lint": "eslint 'index.ts' 'tests/**/*.ts' jest.config.js --fix",
"lint-check": "eslint 'index.ts' 'tests/**/*.ts' jest.config.js --max-warnings 0"
},
"dependencies": {
Expand Down