-
Notifications
You must be signed in to change notification settings - Fork 119
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
chore: fix ~50 eslint errors #1008
chore: fix ~50 eslint errors #1008
Conversation
{ | ||
"files": ["packages/theme/tests/e2e/**/*"], | ||
"rules": { | ||
"jest/expect-expect": "off", |
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.
cypress uses similar test case syntax to jest so eslint gets confused and treats cypress like jest. this solution is not optimal but will do for now
@@ -41,8 +41,10 @@ | |||
"@vue-storefront/nuxt": "~2.5.6", | |||
"@vue-storefront/redis-cache": "^1.0.1", | |||
"axios": "^0.26.1", | |||
"body-parser": "1.19.2", |
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.
These were already used by body-parser.js - I'm just adding them explicitly, rather than using the transient versions provided by unrelated packages
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.
@sethidden Please, fix build issues.
Build issues fixed in b27b057 (non-trivial) |
Second batch of manual eslint fixes. Error/warning count is 140 -> 96. These ones had to be made by hand.