Skip to content
Snippets Groups Projects

Make sure every package supports eslint and run in CI

Merged Reiter, Christoph requested to merge lint-everything into master
24 files
+ 152
42
Compare changes
  • Side-by-side
  • Inline
Files
24
import {html, LitElement} from 'lit-element';
import {html, LitElement, TemplateResult} from 'lit-element';
import {TypeScriptExample} from './typescript-example';
import * as commonUtils from '@dbp-toolkit/common/utils';
import { ScopedElementsMixin } from '@open-wc/scoped-elements';
import { ScopedElementsMixin, ScopedElementsMap } from '@open-wc/scoped-elements';
export class TypeScriptExampleDemo extends ScopedElementsMixin(LitElement) {
static get scopedElements() {
static get scopedElements(): ScopedElementsMap {
return {
'dbp-typescript-example': TypeScriptExample,
};
}
render() {
render(): TemplateResult {
return html`
<dbp-typescript-example lang="de"></dbp-typescript-example>
`;
Loading