-
Notifications
You must be signed in to change notification settings - Fork 322
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// eslint.config.js | ||
export default [ | ||
{ | ||
ignores: ["node_modules/", "dist/", "*.config.js", "*.spec.js"], | ||
} | ||
]; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe reason will be displayed to describe this comment to others. Learn more. You can just use eslint |
||
"@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 commentThe reason will be displayed to describe this comment to others. Learn more. What is it for? I don't think you need it |
||
"tslib": "^2.8.0", | ||
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. Don't you need typescript as well? Or maybe just typescript |
||
"typescript-eslint": "^8.12.2" | ||
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. You don't need it either, it's included in eslint |
||
} | ||
} |
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