Legacy lit imports should not be used in newer versions and have been replaced.
This rule disallows use of legacy lit imports.
The following patterns are considered warnings:
import {internalProperty} from 'lit-element';
The following patterns are not warnings:
import {state} from 'lit/decorators';
If you still rely on older lit, you may want to disable this rule.