-
Notifications
You must be signed in to change notification settings - Fork 317
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
fix(testkit): add eslint, small fixes and add tslib #2572
base: master
Are you sure you want to change the base?
Conversation
// eslint.config.js | ||
export default [ | ||
{ | ||
ignores: ["node_modules/", "dist/", "*.config.js", "*.spec.js"], |
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.
Why this? It should already ignore node_modules and dist
For the others I think it'd be useful
"@playwright/test": "1.45.3", | ||
"eslint": "^9.13.0", | ||
"globals": "^15.11.0", | ||
"tslib": "^2.8.0", |
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.
Don't you need typescript as well? Or maybe just typescript
"@eslint/js": "^9.13.0", | ||
"@playwright/test": "1.45.3", | ||
"eslint": "^9.13.0", | ||
"globals": "^15.11.0", |
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.
What is it for? I don't think you need it
@@ -24,6 +24,11 @@ | |||
"url": "https://github.com/mondaycom/vibe/issues" | |||
}, | |||
"devDependencies": { | |||
"@playwright/test": "1.45.3" | |||
"@eslint/js": "^9.13.0", |
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.
You can just use eslint
"eslint": "^9.13.0", | ||
"globals": "^15.11.0", | ||
"tslib": "^2.8.0", | ||
"typescript-eslint": "^8.12.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.
You don't need it either, it's included in eslint
Resolves #