eslint-plugin-lit
Version:
lit-html support for ESLint
15 lines (14 loc) • 450 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.config = void 0;
exports.config = {
plugins: ['lit'],
rules: {
'lit/attribute-value-entities': 'error',
'lit/binding-positions': 'error',
'lit/no-duplicate-template-bindings': 'error',
'lit/no-invalid-html': 'error',
'lit/no-legacy-template-syntax': 'error',
'lit/no-property-change-update': 'error'
}
};