Skip to content

Commit 3543968

Browse files
committed
finalise 300/500 + prettier format
1 parent e12957f commit 3543968

File tree

9 files changed

+511
-249
lines changed

9 files changed

+511
-249
lines changed

.gitignore

Lines changed: 289 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,291 @@
1-
# Prerequisites
2-
*.d
3-
4-
# Object files
5-
*.o
6-
*.ko
7-
*.obj
8-
*.elf
9-
10-
# Linker output
11-
*.ilk
12-
*.map
13-
*.exp
14-
15-
# Precompiled Headers
16-
*.gch
17-
*.pch
18-
19-
# Libraries
20-
*.lib
21-
*.a
22-
*.la
23-
*.lo
24-
25-
# Shared objects (inc. Windows DLLs)
26-
*.dll
27-
*.so
28-
*.so.*
29-
*.dylib
30-
31-
# Executables
32-
*.exe
33-
*.out
34-
*.app
35-
*.i*86
36-
*.x86_64
37-
*.hex
38-
39-
# Debug files
40-
*.dSYM/
41-
*.su
42-
*.idb
43-
*.pdb
44-
45-
# Kernel Module Compile Results
46-
*.mod*
47-
*.cmd
48-
.tmp_versions/
49-
modules.order
50-
Module.symvers
51-
Mkfile.old
52-
dkms.conf
53-
54-
# Config
55-
.replit
1+
### VisualStudioCode template
2+
.vscode/*
3+
!.vscode/settings.json
4+
!.vscode/tasks.json
5+
!.vscode/launch.json
6+
!.vscode/extensions.json
7+
!.vscode/*.code-snippets
8+
9+
# Local History for Visual Studio Code
10+
.history/
11+
12+
# Built Visual Studio Code Extensions
13+
*.vsix
14+
15+
### JetBrains template
16+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
17+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
18+
19+
# User-specific stuff
20+
.idea/**/workspace.xml
21+
.idea/**/tasks.xml
22+
.idea/**/usage.statistics.xml
23+
.idea/**/dictionaries
24+
.idea/**/shelf
25+
26+
# AWS User-specific
27+
.idea/**/aws.xml
28+
29+
# Generated files
30+
.idea/**/contentModel.xml
31+
32+
# Sensitive or high-churn files
33+
.idea/**/dataSources/
34+
.idea/**/dataSources.ids
35+
.idea/**/dataSources.local.xml
36+
.idea/**/sqlDataSources.xml
37+
.idea/**/dynamic.xml
38+
.idea/**/uiDesigner.xml
39+
.idea/**/dbnavigator.xml
40+
41+
# Gradle
42+
.idea/**/gradle.xml
43+
.idea/**/libraries
44+
45+
# Gradle and Maven with auto-import
46+
# When using Gradle or Maven with auto-import, you should exclude module files,
47+
# since they will be recreated, and may cause churn. Uncomment if using
48+
# auto-import.
49+
# .idea/artifacts
50+
# .idea/compiler.xml
51+
# .idea/jarRepositories.xml
52+
# .idea/modules.xml
53+
# .idea/*.iml
54+
# .idea/modules
55+
# *.iml
56+
# *.ipr
57+
58+
# CMake
59+
cmake-build-*/
60+
61+
# Mongo Explorer plugin
62+
.idea/**/mongoSettings.xml
63+
64+
# File-based project format
65+
*.iws
66+
67+
# IntelliJ
68+
out/
69+
70+
# mpeltonen/sbt-idea plugin
71+
.idea_modules/
72+
73+
# JIRA plugin
74+
atlassian-ide-plugin.xml
75+
76+
# Cursive Clojure plugin
77+
.idea/replstate.xml
78+
79+
# SonarLint plugin
80+
.idea/sonarlint/
81+
82+
# Crashlytics plugin (for Android Studio and IntelliJ)
83+
com_crashlytics_export_strings.xml
84+
crashlytics.properties
85+
crashlytics-build.properties
86+
fabric.properties
87+
88+
# Editor-based Rest Client
89+
.idea/httpRequests
90+
91+
# Android studio 3.1+ serialized cache file
92+
.idea/caches/build_file_checksums.ser
93+
94+
### dotenv template
95+
.env
96+
97+
### Linux template
98+
*~
99+
100+
# temporary files which can be created if a process still has a handle open of a deleted file
101+
.fuse_hidden*
102+
103+
# KDE directory preferences
104+
.directory
105+
106+
# Linux trash folder which might appear on any partition or disk
107+
.Trash-*
108+
109+
# .nfs files are created when an open file is removed but is still being accessed
110+
.nfs*
111+
112+
### Vim template
113+
# Swap
114+
[._]*.s[a-v][a-z]
115+
!*.svg # comment out if you don't need vector files
116+
[._]*.sw[a-p]
117+
[._]s[a-rt-v][a-z]
118+
[._]ss[a-gi-z]
119+
[._]sw[a-p]
120+
121+
# Session
122+
Session.vim
123+
Sessionx.vim
124+
125+
# Temporary
126+
.netrwhist
127+
# Auto-generated tag files
128+
tags
129+
# Persistent undo
130+
[._]*.un~
131+
132+
### macOS template
133+
# General
56134
.DS_Store
135+
.AppleDouble
136+
.LSOverride
137+
138+
# Icon must end with two \r
139+
Icon
140+
141+
# Thumbnails
142+
._*
143+
144+
# Files that might appear in the root of a volume
145+
.DocumentRevisions-V100
146+
.fseventsd
147+
.Spotlight-V100
148+
.TemporaryItems
149+
.Trashes
150+
.VolumeIcon.icns
151+
.com.apple.timemachine.donotpresent
152+
153+
# Directories potentially created on remote AFP share
154+
.AppleDB
155+
.AppleDesktop
156+
Network Trash Folder
157+
Temporary Items
158+
.apdisk
159+
160+
### Node template
161+
# Logs
162+
logs
163+
*.log
164+
npm-debug.log*
165+
yarn-debug.log*
166+
yarn-error.log*
167+
lerna-debug.log*
168+
.pnpm-debug.log*
169+
170+
# Diagnostic reports (https://nodejs.org/api/report.html)
171+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
172+
173+
# Runtime data
174+
pids
175+
*.pid
176+
*.seed
177+
*.pid.lock
178+
179+
# Directory for instrumented libs generated by jscoverage/JSCover
180+
lib-cov
181+
182+
# Coverage directory used by tools like istanbul
183+
coverage
184+
*.lcov
185+
186+
# nyc test coverage
187+
.nyc_output
188+
189+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
190+
.grunt
191+
192+
# Bower dependency directory (https://bower.io/)
193+
bower_components
194+
195+
# node-waf configuration
196+
.lock-wscript
197+
198+
# Compiled binary addons (https://nodejs.org/api/addons.html)
199+
build/Release
200+
201+
# Dependency directories
57202
node_modules/
58-
out/
59-
package-lock.json
203+
jspm_packages/
204+
205+
# Snowpack dependency directory (https://snowpack.dev/)
206+
web_modules/
207+
208+
# TypeScript cache
209+
*.tsbuildinfo
210+
211+
# Optional npm cache directory
212+
.npm
213+
214+
# Optional eslint cache
215+
.eslintcache
216+
217+
# Optional stylelint cache
218+
.stylelintcache
219+
220+
# Microbundle cache
221+
.rpt2_cache/
222+
.rts2_cache_cjs/
223+
.rts2_cache_es/
224+
.rts2_cache_umd/
225+
226+
# Optional REPL history
227+
.node_repl_history
228+
229+
# Output of 'npm pack'
230+
*.tgz
231+
232+
# Yarn Integrity file
233+
.yarn-integrity
234+
235+
# dotenv environment variable files
236+
.env.development.local
237+
.env.test.local
238+
.env.production.local
239+
.env.local
240+
241+
# parcel-bundler cache (https://parceljs.org/)
242+
.cache
243+
.parcel-cache
244+
245+
# Next.js build output
246+
.next
247+
out
248+
249+
# Nuxt.js build / generate output
250+
.nuxt
251+
dist
252+
253+
# Gatsby files
254+
.cache/
255+
# Comment in the public line in if your project uses Gatsby and not Next.js
256+
# https://nextjs.org/blog/next-9-1#public-directory-support
257+
# public
258+
259+
# vuepress build output
260+
.vuepress/dist
261+
262+
# vuepress v2.x temp and cache directory
263+
.temp
264+
265+
# Docusaurus cache and generated files
266+
.docusaurus
267+
268+
# Serverless directories
269+
.serverless/
270+
271+
# FuseBox cache
272+
.fusebox/
273+
274+
# DynamoDB Local files
275+
.dynamodb/
276+
277+
# TernJS port file
278+
.tern-port
279+
280+
# Stores VSCode versions used for testing VSCode extensions
281+
.vscode-test
282+
283+
# yarn v2
284+
.yarn/cache
285+
.yarn/unplugged
286+
.yarn/build-state.yml
287+
.yarn/install-state.gz
288+
.pnp.*
289+
290+
### Other
291+
.idea

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22

33
![Website](https://img.shields.io/website?url=https%3A%2F%2Fgithub.com%2FMRT-Map%2Fmap%2Fwiki&label=wiki)
44
![GitHub License](https://img.shields.io/github/license/MRT-Map/map)
5-
![GitHub Pages Status](https://img.shields.io/github/actions/workflow/status/MRT-Map/map/.github%2Fworkflows%2Fpages.yml?style=flat&label=build%20(pages)&link=https%3A%2F%2Fmrt-map.github.io/map)
5+
![GitHub Pages Status](<https://img.shields.io/github/actions/workflow/status/MRT-Map/map/.github%2Fworkflows%2Fpages.yml?style=flat&label=build%20(pages)&link=https%3A%2F%2Fmrt-map.github.io/map>)
66

77
![GitHub code size](https://img.shields.io/github/languages/code-size/MRT-Map/map)
88
![GitHub repo size](https://img.shields.io/github/repo-size/MRT-Map/map)
99
![GitHub last commit (branch)](https://img.shields.io/github/last-commit/mrt-map/map/main)
1010
![Libraries.io dependency status for GitHub repo](https://img.shields.io/librariesio/github/MRT-Map/map)
1111

12-
1312
A detailed map of the Minecart Rapid Transit server, inspired by OpenStreetMap and Google Maps
1413

1514
Also includes Airportcalc 2
1615

1716
All data is sourced from staff documents and the server dynamic map. You may need to hard refresh your page (shift+f5) to get the latest updates.
1817

1918
## Development
19+
2020
This project uses `esbuild`. Run the `dev` task to start a dev server. To compile for production, run the `prod` task.
2121

2222
## Collaborators

0 commit comments

Comments
 (0)