Skip to content

Commit f41789f

Browse files
authored
Validation overhaul (#10)
1 parent 17e16d7 commit f41789f

38 files changed

+1832
-1381
lines changed

.gitignore

+2-137
Original file line numberDiff line numberDiff line change
@@ -1,139 +1,4 @@
1+
node_modules/
12
lib/
23
docs/
3-
*.tgz
4-
5-
# IntelliJ Idea file-based project settings
6-
*.iws
7-
/out/
8-
.idea
9-
10-
# VSCode
11-
*.tsbuildinfo
12-
13-
# Android studio
14-
.gradle/
15-
local.properties
16-
.DS_Store
17-
captures/
18-
.externalNativeBuild
19-
20-
# Cache files for SublimeText
21-
*.tmlanguage.cache
22-
*.tmPreferences.cache
23-
*.stTheme.cache
24-
25-
# Workspace files are user-specific
26-
*.sublime-workspace
27-
28-
# Project files should be checked into the repository, unless a significant
29-
# proportion of contributors will probably not be using SublimeText
30-
*.sublime-project
31-
32-
# sFTP configuration file
33-
sftp-config.json
34-
35-
# Package control specific files
36-
Package Control.last-run
37-
Package Control.ca-list
38-
Package Control.ca-bundle
39-
Package Control.system-ca-bundle
40-
Package Control.cache/
41-
Package Control.ca-certs/
42-
bh_unicode_properties.cache
43-
44-
# Sublime-github package stores a github token in this file
45-
# https://packagecontrol.io/packages/sublime-github
46-
GitHub.sublime-settings
47-
48-
# Node
49-
*.moved-aside
50-
*.xccheckout
51-
*.xcscmblueprint
52-
# Out of memory reports
53-
report.*.json
54-
55-
# Logs
56-
logs
57-
*.log
58-
npm-debug.log*
59-
60-
# Runtime data
61-
pids
62-
*.pid
63-
*.seed
64-
65-
# Dependency directories
66-
node_modules
67-
flow-typed
68-
jspm_packages
69-
70-
# Optional npm cache directory
71-
.npm
72-
73-
# Optional REPL history
74-
.node_repl_history
75-
76-
# Build generated
77-
build/
78-
DerivedData/
79-
80-
# OSX
81-
*.DS_Store
82-
.AppleDouble
83-
.LSOverride
84-
85-
# Thumbnails
86-
._*
87-
88-
# Files that might appear in the root of a volume
89-
.DocumentRevisions-V100
90-
.fseventsd
91-
.Spotlight-V100
92-
.TemporaryItems
93-
.Trashes
94-
.VolumeIcon.icns
95-
.com.apple.timemachine.donotpresent
96-
97-
# Directories potentially created on remote AFP share
98-
.AppleDB
99-
.AppleDesktop
100-
Network Trash Folder
101-
Temporary Items
102-
.apdisk
103-
104-
# Linux
105-
*~
106-
107-
# Temporary files which can be created if a process still has a handle
108-
# open of a deleted file
109-
.fuse_hidden*
110-
111-
# KDE directory preferences
112-
.directory
113-
114-
# Linux trash folder which might appear on any partition or disk
115-
.Trash-*
116-
117-
# Windows
118-
*.bak
119-
*.tmp
120-
*.swp
121-
122-
# Image file caches
123-
Thumbs.db
124-
ehthumbs.db
125-
126-
# Folder config file
127-
Desktop.ini
128-
129-
# Recycle bin used on file shares
130-
$RECYCLE.BIN/
131-
132-
# Installer files
133-
*.cab
134-
*.msi
135-
*.msm
136-
*.msp
137-
138-
# Shortcuts
139-
*.lnk
4+
coverage/

0 commit comments

Comments
 (0)