Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
npm install was failing with npm 7 unless using the
--legacy-peer-deps
flag. Remove dependency to old version of
eslint-config-vaadin
and
stylelint-config-vaadin
while adapting the configs to try to keepthe rules mostly the same for now. We might consider using the latest
version of
eslint-config-vaadin
andstylelint-config-vaadin
again whenwe migrate away from bower and HTML Imports and maybe migrate
this repo to use TypeScript.
The problem was old versions of
eslint
andstylelint
declared as peer dependencies ofeslint-config-vaadin
andstylelint-config-vaadin
and we can't yet use newer versions ofeslint-config-vaadin
andstylelint-config-vaadin
because they have changed to support LitElement and TypeScript based projects and those configs don't work as is for vaadin-router which is still based on HTML Imports and doesn't use TS.Fixes #541.