Skip to content

Commit e57d97a

Browse files
feat: use maplibre-gl instead of leaflet
1 parent 49d3798 commit e57d97a

File tree

15 files changed

+11452
-1053
lines changed

15 files changed

+11452
-1053
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ REACT_APP_CENTER_COORDS="52.51831,13.393707"
66

77
# uncomment this variable to set boundaries on the leaflet map
88
# southwest corner, northeast corner
9-
REACT_APP_MAX_BOUNDS="-90,-1e7,90,1e7"
9+
REACT_APP_MAX_BOUNDS="-180,-90,180,90"

eslint.config.js

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -9,27 +9,7 @@ import checkFile from 'eslint-plugin-check-file';
99

1010
export default defineConfig(
1111
{
12-
ignores: [
13-
'node_modules',
14-
'build',
15-
'dist',
16-
'coverage',
17-
'**/*.css',
18-
'**/*.scss',
19-
'**/*.less',
20-
'**/*.svg',
21-
'**/*.png',
22-
'**/*.jpg',
23-
'**/*.jpeg',
24-
'**/*.gif',
25-
'**/*.ico',
26-
'**/*.woff',
27-
'**/*.woff2',
28-
'**/*.ttf',
29-
'**/*.eot',
30-
'**/*.DS_Store',
31-
'src/vite-env.d.ts',
32-
],
12+
ignores: ['node_modules', 'build', 'dist', 'coverage'],
3313
},
3414
{
3515
files: ['**/*.ts', '**/*.tsx'],
@@ -101,7 +81,7 @@ export default defineConfig(
10181
},
10282
},
10383
{
104-
files: ['src/**/*.*'],
84+
files: ['**/*.ts', '**/*.tsx'],
10585
plugins: { 'check-file': checkFile },
10686
rules: {
10787
'check-file/filename-naming-convention': [

0 commit comments

Comments
 (0)