Skip to content

Commit a1735a8

Browse files
committed
formatting
1 parent 017e05b commit a1735a8

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

src/sidebar/CustomModelBox.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
.cm-s-default .cm-string {
2-
color: #067D17;
2+
color: #067d17;
33
}
44

55
.cm-s-default .cm-property {
66
color: #871094;
77
}
88

99
.cm-s-default .cm-number {
10-
color: #1750EB;
10+
color: #1750eb;
1111
}
1212

1313
.cm-s-default .cm-atom {
14-
color: #0033B3;
14+
color: #0033b3;
1515
}

src/stores/MapOptionsStore.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ const osmCycl: RasterStyle = {
6969
'https://b.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png',
7070
'https://c.tile-cyclosm.openstreetmap.fr/cyclosm/{z}/{x}/{y}.png',
7171
],
72-
attribution: osmAttribution + ', &copy; <a href="https://github.com/cyclosm/cyclosm-cartocss-style/releases" target="_blank">CyclOSM</a>',
72+
attribution:
73+
osmAttribution +
74+
', &copy; <a href="https://github.com/cyclosm/cyclosm-cartocss-style/releases" target="_blank">CyclOSM</a>',
7375
maxZoom: 19,
7476
}
7577

@@ -187,7 +189,7 @@ const styleOptions: StyleOption[] = [
187189
kurviger,
188190
mapillion,
189191
lyrk,
190-
wanderreitkarte
192+
wanderreitkarte,
191193
]
192194

193195
export default class MapOptionsStore extends Store<MapOptionsStoreState> {

webpack.common.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ module.exports = {
5858
loader: 'css-loader',
5959
options: {
6060
modules: {
61-
auto: (resourcePath) => resourcePath.endsWith(".module.css")
61+
auto: resourcePath => resourcePath.endsWith('.module.css'),
6262
},
6363
},
6464
},

webpack.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const develop = {
2222
loader: 'css-loader',
2323
options: {
2424
modules: {
25-
auto: (resourcePath) => resourcePath.endsWith(".module.css"),
25+
auto: resourcePath => resourcePath.endsWith('.module.css'),
2626
localIdentName: '[path][name]__[local]',
2727
},
2828
},

0 commit comments

Comments
 (0)