Skip to content

Commit e8a8ae2

Browse files
committed
💚 webcomps linter
1 parent fc106b4 commit e8a8ae2

File tree

4 files changed

+141
-129
lines changed

4 files changed

+141
-129
lines changed
Lines changed: 34 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,56 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8"/>
3+
<head>
4+
<meta charset="UTF-8" />
55
<meta
6-
name="robots"
7-
content="noindex"
6+
name="robots"
7+
content="noindex"
88
/>
99
<link
10-
href="/favicon.ico"
11-
rel="icon"
10+
href="/favicon.ico"
11+
rel="icon"
1212
/>
1313
<meta
14-
content="width=device-width, initial-scale=1.0"
15-
name="viewport"
14+
content="width=device-width, initial-scale=1.0"
15+
name="viewport"
1616
/>
1717
<title>personalization-webcomponent</title>
1818

1919
<!-- Muenchen.de Fontfaces -->
2020
<link
21-
href="https://assets.muenchen.de/mde/1.0.10/css/fonts.css"
22-
rel="stylesheet"
21+
href="https://assets.muenchen.de/mde/1.0.10/css/fonts.css"
22+
rel="stylesheet"
2323
/>
2424

2525
<!-- Load login-WC from local dev-server -->
26-
<script src="http://localhost:5173/src/main.ts" type="module"></script>
26+
<script
27+
src="http://localhost:5173/src/main.ts"
28+
type="module"
29+
></script>
2730

2831
<!-- built files will be auto injected -->
2932
<script
30-
src="src/checklist-detail-webcomponent.ts"
31-
type="module"
33+
src="src/checklist-detail-webcomponent.ts"
34+
type="module"
3235
></script>
33-
</head>
34-
<body>
35-
<noscript>
36-
<strong>
36+
</head>
37+
<body>
38+
<noscript>
39+
<strong>
3740
In order for the development page to work correctly, JavaScript needs to
3841
be activated.
39-
</strong>
40-
</noscript>
41-
<dbs-login
42-
kc-url="http://localhost:8100/auth/"
43-
kc-realm="local_realm"
44-
kc-client-id="local"
45-
overview-link="http://localhost:3000/"
46-
ticket-link="http://localhost:3000/"
47-
appointment-link="http://localhost:3000/"
48-
></dbs-login>
49-
<div>
50-
<checklist-detail first-name="Julia"></checklist-detail>
51-
</div>
52-
</body>
42+
</strong>
43+
</noscript>
44+
<dbs-login
45+
kc-url="http://localhost:8100/auth/"
46+
kc-realm="local_realm"
47+
kc-client-id="local"
48+
overview-link="http://localhost:3000/"
49+
ticket-link="http://localhost:3000/"
50+
appointment-link="http://localhost:3000/"
51+
></dbs-login>
52+
<div>
53+
<checklist-detail first-name="Julia"></checklist-detail>
54+
</div>
55+
</body>
5356
</html>
Lines changed: 34 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,56 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8"/>
3+
<head>
4+
<meta charset="UTF-8" />
55
<meta
6-
name="robots"
7-
content="noindex"
6+
name="robots"
7+
content="noindex"
88
/>
99
<link
10-
href="/favicon.ico"
11-
rel="icon"
10+
href="/favicon.ico"
11+
rel="icon"
1212
/>
1313
<meta
14-
content="width=device-width, initial-scale=1.0"
15-
name="viewport"
14+
content="width=device-width, initial-scale=1.0"
15+
name="viewport"
1616
/>
1717
<title>personalization-webcomponent</title>
1818

1919
<!-- Muenchen.de Fontfaces -->
2020
<link
21-
href="https://assets.muenchen.de/mde/1.0.10/css/fonts.css"
22-
rel="stylesheet"
21+
href="https://assets.muenchen.de/mde/1.0.10/css/fonts.css"
22+
rel="stylesheet"
2323
/>
2424

2525
<!-- Load login-WC from local dev-server -->
26-
<script src="http://localhost:5173/src/main.ts" type="module"></script>
26+
<script
27+
src="http://localhost:5173/src/main.ts"
28+
type="module"
29+
></script>
2730

2831
<!-- built files will be auto injected -->
2932
<script
30-
src="src/checklist-overview-webcomponent.ts"
31-
type="module"
33+
src="src/checklist-overview-webcomponent.ts"
34+
type="module"
3235
></script>
33-
</head>
34-
<body>
35-
<noscript>
36-
<strong>
36+
</head>
37+
<body>
38+
<noscript>
39+
<strong>
3740
In order for the development page to work correctly, JavaScript needs to
3841
be activated.
39-
</strong>
40-
</noscript>
41-
<dbs-login
42-
kc-url="http://localhost:8100/auth/"
43-
kc-realm="local_realm"
44-
kc-client-id="local"
45-
overview-link="http://localhost:3000/"
46-
ticket-link="http://localhost:3000/"
47-
appointment-link="http://localhost:3000/"
48-
></dbs-login>
49-
<div>
50-
<checklist-overview first-name="Simon"/>
51-
</div>
52-
</body>
42+
</strong>
43+
</noscript>
44+
<dbs-login
45+
kc-url="http://localhost:8100/auth/"
46+
kc-realm="local_realm"
47+
kc-client-id="local"
48+
overview-link="http://localhost:3000/"
49+
ticket-link="http://localhost:3000/"
50+
appointment-link="http://localhost:3000/"
51+
></dbs-login>
52+
<div>
53+
<checklist-overview first-name="Simon" />
54+
</div>
55+
</body>
5356
</html>
Lines changed: 36 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,58 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8"/>
3+
<head>
4+
<meta charset="UTF-8" />
55
<meta
6-
name="robots"
7-
content="noindex"
6+
name="robots"
7+
content="noindex"
88
/>
99
<link
10-
href="/favicon.ico"
11-
rel="icon"
10+
href="/favicon.ico"
11+
rel="icon"
1212
/>
1313
<meta
14-
content="width=device-width, initial-scale=1.0"
15-
name="viewport"
14+
content="width=device-width, initial-scale=1.0"
15+
name="viewport"
1616
/>
1717
<title>personalization-webcomponent</title>
1818

1919
<!-- Muenchen.de Fontfaces -->
2020
<link
21-
href="https://assets.muenchen.de/mde/1.0.10/css/fonts.css"
22-
rel="stylesheet"
21+
href="https://assets.muenchen.de/mde/1.0.10/css/fonts.css"
22+
rel="stylesheet"
2323
/>
2424

2525
<!-- Load login-WC from local dev-server -->
26-
<script src="http://localhost:5173/src/main.ts" type="module"></script>
26+
<script
27+
src="http://localhost:5173/src/main.ts"
28+
type="module"
29+
></script>
2730

2831
<!-- built files will be auto injected -->
2932
<script
30-
src="src/my-checklists-webcomponent.ts"
31-
type="module"
33+
src="src/my-checklists-webcomponent.ts"
34+
type="module"
3235
></script>
33-
</head>
34-
<body>
35-
<noscript>
36-
<strong>
36+
</head>
37+
<body>
38+
<noscript>
39+
<strong>
3740
In order for the development page to work correctly, JavaScript needs to
3841
be activated.
39-
</strong>
40-
</noscript>
41-
<dbs-login
42-
kc-url="http://localhost:8100/auth/"
43-
kc-realm="local_realm"
44-
kc-client-id="local"
45-
overview-link="http://localhost:3000/"
46-
ticket-link="http://localhost:3000/"
47-
appointment-link="http://localhost:3000/"
48-
></dbs-login>
49-
<div>
50-
<my-checklists
51-
checklist-detail-url="./index-checklist-detail.html"
52-
></my-checklists>
53-
</div>
54-
</body>
42+
</strong>
43+
</noscript>
44+
<dbs-login
45+
kc-url="http://localhost:8100/auth/"
46+
kc-realm="local_realm"
47+
kc-client-id="local"
48+
overview-link="http://localhost:3000/"
49+
ticket-link="http://localhost:3000/"
50+
appointment-link="http://localhost:3000/"
51+
></dbs-login>
52+
<div>
53+
<my-checklists
54+
checklist-detail-url="./index-checklist-detail.html"
55+
></my-checklists>
56+
</div>
57+
</body>
5558
</html>
Lines changed: 37 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,58 +1,61 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8"/>
3+
<head>
4+
<meta charset="UTF-8" />
55
<meta
6-
name="robots"
7-
content="noindex"
6+
name="robots"
7+
content="noindex"
88
/>
99
<link
10-
href="/favicon.ico"
11-
rel="icon"
10+
href="/favicon.ico"
11+
rel="icon"
1212
/>
1313
<meta
14-
content="width=device-width, initial-scale=1.0"
15-
name="viewport"
14+
content="width=device-width, initial-scale=1.0"
15+
name="viewport"
1616
/>
1717
<title>personalization-webcomponents</title>
1818

1919
<!-- Muenchen.de Fontfaces -->
2020
<link
21-
href="https://assets.muenchen.de/mde/1.0.10/css/fonts.css"
22-
rel="stylesheet"
21+
href="https://assets.muenchen.de/mde/1.0.10/css/fonts.css"
22+
rel="stylesheet"
2323
/>
2424

2525
<!-- Load login-WC from local dev-server -->
26-
<script src="http://localhost:5173/src/main.ts" type="module"></script>
27-
</head>
28-
<body>
29-
<noscript>
30-
<strong>
26+
<script
27+
src="http://localhost:5173/src/main.ts"
28+
type="module"
29+
></script>
30+
</head>
31+
<body>
32+
<noscript>
33+
<strong>
3134
In order for the development page to work correctly, JavaScript needs to
3235
be activated.
33-
</strong>
34-
</noscript>
35-
<div>
36-
<dbs-login
37-
kc-url="http://localhost:8100/auth/"
38-
kc-realm="local_realm"
39-
kc-client-id="local"
40-
overview-link="http://localhost:3000/"
41-
ticket-link="http://localhost:3000/"
42-
appointment-link="http://localhost:3000/"
43-
></dbs-login>
44-
<h1>The following webcomponents are available:</h1>
45-
<ul>
36+
</strong>
37+
</noscript>
38+
<div>
39+
<dbs-login
40+
kc-url="http://localhost:8100/auth/"
41+
kc-realm="local_realm"
42+
kc-client-id="local"
43+
overview-link="http://localhost:3000/"
44+
ticket-link="http://localhost:3000/"
45+
appointment-link="http://localhost:3000/"
46+
></dbs-login>
47+
<h1>The following webcomponents are available:</h1>
48+
<ul>
4649
<li>
47-
<a href="index-checklist-detail.html">checklist-detail webcomp</a>
50+
<a href="index-checklist-detail.html">checklist-detail webcomp</a>
4851
</li>
4952
<li>
50-
<a href="index-checklist-overview.html">checklist-overview webcomp</a>
53+
<a href="index-checklist-overview.html">checklist-overview webcomp</a>
5154
</li>
5255
<li>
53-
<a href="index-my-checklists.html">my-checklists webcomp</a>
56+
<a href="index-my-checklists.html">my-checklists webcomp</a>
5457
</li>
55-
</ul>
56-
</div>
57-
</body>
58+
</ul>
59+
</div>
60+
</body>
5861
</html>

0 commit comments

Comments
 (0)