We have new eslint v8! [ESLint v8.0.0 released - ESLint - Pluggable JavaScript linter](https://eslint.org/blog/2021/10/eslint-v8.0.0-released) [Migrating to v8.0.0 - ESLint - Pluggable JavaScript linter](https://eslint.org/docs/user-guide/migrating-to-8.0.0) Do you have any ideas about supporting versions? Some modules support wide range: > "eslint": "^5.16.0 || ^6.8.0 || ^7.2.0", https://github.com/airbnb/javascript/blob/4ee732639396362c6981b1aa4730934c3baa7919/packages/eslint-config-airbnb-base/package.json#L60 In this case, we need to have below: > "@typescript-eslint/eslint-plugin": "^4.28.0 || ^5.0.0", > "@typescript-eslint/parser": "^4.28.0 || ^5.0.0", etc. 😅 I prefer this way: > "eslint": ">=7", https://github.com/moneyforward/eslint-config-moneyforward/blob/65e0cfe97e03ec9777f85b6e9f221adce01580b1/package.json#L40 It may be fragile. Do you have any ideas?
We have new eslint v8!
ESLint v8.0.0 released - ESLint - Pluggable JavaScript linter
Migrating to v8.0.0 - ESLint - Pluggable JavaScript linter
Do you have any ideas about supporting versions?
Some modules support wide range:
https://github.com/airbnb/javascript/blob/4ee732639396362c6981b1aa4730934c3baa7919/packages/eslint-config-airbnb-base/package.json#L60
In this case, we need to have below:
etc.
😅
I prefer this way:
https://github.com/moneyforward/eslint-config-moneyforward/blob/65e0cfe97e03ec9777f85b6e9f221adce01580b1/package.json#L40
It may be fragile.
Do you have any ideas?