eslint rule for imports

This commit is contained in:
Niels Lyngsø
2023-05-25 15:11:37 +02:00
parent ab598ab1c5
commit 0f5582cf00
468 changed files with 819 additions and 1118 deletions

View File

@@ -4,4 +4,4 @@ import '@umbraco-ui/uui-css/dist/uui-css.css';
import '../../../src/shared/css/custom-properties.css';
import '@umbraco-ui/uui';
import './login.element';
import './login.element.js';

View File

@@ -3,7 +3,7 @@ import { css, CSSResultGroup, html, LitElement } from 'lit';
import { customElement, state } from 'lit/decorators.js';
import { ifDefined } from 'lit/directives/if-defined.js';
import './auth-layout.element';
import './auth-layout.element.js';
@customElement('umb-login')
export default class UmbLoginElement extends LitElement {

View File

@@ -1,6 +1,6 @@
import { expect, fixture, html } from '@open-wc/testing';
import { defaultA11yConfig } from '@umbraco-cms/internal/test-utils';
import UmbLoginElement from './login.element';
import UmbLoginElement from './login.element.js';
describe('UmbLogin', () => {
let element: UmbLoginElement;