Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit cb51808

Browse files
authored
Merge pull request #1 from FileFighter/feature_typescript
Switched to typescript
2 parents b6bf8cb + ee15bcc commit cb51808

File tree

12 files changed

+512
-46
lines changed

12 files changed

+512
-46
lines changed

.gitignore

Lines changed: 255 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,220 @@
1-
# Created by https://www.toptal.com/developers/gitignore/api/node,react
2-
# Edit at https://www.toptal.com/developers/gitignore?templates=node,react
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/node,react,intellij,eclipse,windows,macos,osx,linux
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=node,react,intellij,eclipse,windows,macos,osx,linux
4+
5+
### Eclipse ###
6+
.metadata
7+
bin/
8+
tmp/
9+
*.tmp
10+
*.bak
11+
*.swp
12+
*~.nib
13+
local.properties
14+
.settings/
15+
.loadpath
16+
.recommenders
17+
18+
# External tool builders
19+
.externalToolBuilders/
20+
21+
# Locally stored "Eclipse launch configurations"
22+
*.launch
23+
24+
# PyDev specific (Python IDE for Eclipse)
25+
*.pydevproject
26+
27+
# CDT-specific (C/C++ Development Tooling)
28+
.cproject
29+
30+
# CDT- autotools
31+
.autotools
32+
33+
# Java annotation processor (APT)
34+
.factorypath
35+
36+
# PDT-specific (PHP Development Tools)
37+
.buildpath
38+
39+
# sbteclipse plugin
40+
.target
41+
42+
# Tern plugin
43+
.tern-project
44+
45+
# TeXlipse plugin
46+
.texlipse
47+
48+
# STS (Spring Tool Suite)
49+
.springBeans
50+
51+
# Code Recommenders
52+
.recommenders/
53+
54+
# Annotation Processing
55+
.apt_generated/
56+
.apt_generated_test/
57+
58+
# Scala IDE specific (Scala & Java development for Eclipse)
59+
.cache-main
60+
.scala_dependencies
61+
.worksheet
62+
63+
# Uncomment this line if you wish to ignore the project description file.
64+
# Typically, this file would be tracked if it contains build/dependency configurations:
65+
#.project
66+
67+
### Eclipse Patch ###
68+
# Spring Boot Tooling
69+
.sts4-cache/
70+
71+
### Intellij ###
72+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
73+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
74+
75+
# User-specific stuff
76+
*/.idea/**/workspace.xml
77+
*/.idea/**/tasks.xml
78+
*/.idea/**/usage.statistics.xml
79+
*/.idea/**/dictionaries
80+
*/.idea/**/shelf
81+
82+
# Generated files
83+
*/.idea/**/contentModel.xml
84+
85+
*/.idea/
86+
87+
# Sensitive or high-churn files
88+
*/.idea/**/dataSources/
89+
*/.idea/**/dataSources.ids
90+
*/.idea/**/dataSources.local.xml
91+
*/.idea/**/sqlDataSources.xml
92+
*/.idea/**/dynamic.xml
93+
*/.idea/**/uiDesigner.xml
94+
*/.idea/**/dbnavigator.xml
95+
96+
# Gradle
97+
.idea/**/gradle.xml
98+
.idea/**/libraries
99+
100+
# Gradle and Maven with auto-import
101+
# When using Gradle or Maven with auto-import, you should exclude module files,
102+
# since they will be recreated, and may cause churn. Uncomment if using
103+
# auto-import.
104+
# .idea/artifacts
105+
# .idea/compiler.xml
106+
# .idea/jarRepositories.xml
107+
# .idea/modules.xml
108+
# .idea/*.iml
109+
# .idea/modules
110+
# *.iml
111+
# *.ipr
112+
113+
# CMake
114+
cmake-build-*/
115+
116+
# Mongo Explorer plugin
117+
.idea/**/mongoSettings.xml
118+
119+
# File-based project format
120+
*.iws
121+
122+
# IntelliJ
123+
out/
124+
125+
# mpeltonen/sbt-idea plugin
126+
.idea_modules/
127+
128+
# JIRA plugin
129+
atlassian-ide-plugin.xml
130+
131+
# Cursive Clojure plugin
132+
.idea/replstate.xml
133+
134+
# Crashlytics plugin (for Android Studio and IntelliJ)
135+
com_crashlytics_export_strings.xml
136+
crashlytics.properties
137+
crashlytics-build.properties
138+
fabric.properties
139+
140+
# Editor-based Rest Client
141+
.idea/httpRequests
142+
143+
# Android studio 3.1+ serialized cache file
144+
.idea/caches/build_file_checksums.ser
145+
146+
### Intellij Patch ###
147+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
148+
149+
# *.iml
150+
# modules.xml
151+
# .idea/misc.xml
152+
# *.ipr
153+
154+
# Sonarlint plugin
155+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
156+
.idea/**/sonarlint/
157+
158+
# SonarQube Plugin
159+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
160+
.idea/**/sonarIssues.xml
161+
162+
# Markdown Navigator plugin
163+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
164+
.idea/**/markdown-navigator.xml
165+
.idea/**/markdown-navigator-enh.xml
166+
.idea/**/markdown-navigator/
167+
168+
# Cache file creation bug
169+
# See https://youtrack.jetbrains.com/issue/JBR-2257
170+
.idea/$CACHE_FILE$
171+
172+
# CodeStream plugin
173+
# https://plugins.jetbrains.com/plugin/12206-codestream
174+
.idea/codestream.xml
175+
176+
### Linux ###
177+
*~
178+
179+
# temporary files which can be created if a process still has a handle open of a deleted file
180+
.fuse_hidden*
181+
182+
# KDE directory preferences
183+
.directory
184+
185+
# Linux trash folder which might appear on any partition or disk
186+
.Trash-*
187+
188+
# .nfs files are created when an open file is removed but is still being accessed
189+
.nfs*
190+
191+
### macOS ###
192+
# General
193+
.DS_Store
194+
.AppleDouble
195+
.LSOverride
196+
197+
# Icon must end with two \r
198+
Icon
199+
200+
# Thumbnails
201+
._*
202+
203+
# Files that might appear in the root of a volume
204+
.DocumentRevisions-V100
205+
.fseventsd
206+
.Spotlight-V100
207+
.TemporaryItems
208+
.Trashes
209+
.VolumeIcon.icns
210+
.com.apple.timemachine.donotpresent
211+
212+
# Directories potentially created on remote AFP share
213+
.AppleDB
214+
.AppleDesktop
215+
Network Trash Folder
216+
Temporary Items
217+
.apdisk
3218

4219
### Node ###
5220
# Logs
@@ -112,6 +327,17 @@ dist
112327
# Stores VSCode versions used for testing VSCode extensions
113328
.vscode-test
114329

330+
### OSX ###
331+
# General
332+
333+
# Icon must end with two \r
334+
335+
# Thumbnails
336+
337+
# Files that might appear in the root of a volume
338+
339+
# Directories potentially created on remote AFP share
340+
115341
### react ###
116342
.DS_*
117343
**/*.backup.*
@@ -125,4 +351,30 @@ psd
125351
thumb
126352
sketch
127353

128-
# End of https://www.toptal.com/developers/gitignore/api/node,react
354+
### Windows ###
355+
# Windows thumbnail cache files
356+
Thumbs.db
357+
Thumbs.db:encryptable
358+
ehthumbs.db
359+
ehthumbs_vista.db
360+
361+
# Dump file
362+
*.stackdump
363+
364+
# Folder config file
365+
[Dd]esktop.ini
366+
367+
# Recycle Bin used on file shares
368+
$RECYCLE.BIN/
369+
370+
# Windows Installer files
371+
*.cab
372+
*.msi
373+
*.msix
374+
*.msm
375+
*.msp
376+
377+
# Windows shortcuts
378+
*.lnk
379+
380+
# End of https://www.toptal.com/developers/gitignore/api/node,react,intellij,eclipse,windows,macos,osx,linux

0 commit comments

Comments
 (0)