Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 134
[C-4289] Make verify call lint instead of lint:fix#8152
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
ad8bd1daad03b956e63b2b94919b5daa31bFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -3,4 +3,4 @@ jobs: | ||
| context: Audius Client | ||
| filters: | ||
| branches: | ||
| only: /(^release.*)$/ | ||
| only: /(^release-client.*)$/ | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -14,7 +14,7 @@ | ||
| "lint:fix": "eslint --cache --fix --ext=js,jsx,ts,tsx src", | ||
| "lint": "eslint --cache --ext=js,jsx,ts,tsx src", | ||
| "lint:env": "dotenv-linter", | ||
| "verify": "concurrently \"npm:lint:fix\" \"npm:lint:env\"" | ||
| "verify": "concurrently \"npm:lint\" \"npm:lint:env\"" | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Great change 👍 Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will this stop CI from fixing lint errors and returning green anyway? ContributorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes exactly! | ||
| }, | ||
| "devDependencies": { | ||
| "@audius/dotenv-linter": "*", | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| module.exports = { | ||
| root: true, | ||
| env: { browser: true, es6: true }, | ||
| extends: ['audius'] | ||
| } |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
intentional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, something I forgot in previous pr