Skip to content
This repository was archived by the owner on Oct 24, 2021. It is now read-only.

Commit f8fc22e

Browse files
we may have been spotted
1 parent 3bf2d04 commit f8fc22e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+17631
-0
lines changed

.editorconfig

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
root = true
2+
3+
charset = utf-8
4+
5+
[*]
6+
indent_style = tab
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
indent_size = 4
12+
13+
[{package.json,*.yml}]
14+
indent_style = space
15+
indent_size = 2
16+
17+
# Don't remove trailing whitespace from Markdown
18+
[*.md]
19+
trim_trailing_whitespace = false

.eslintignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
bower_components
3+
coverage

.gitattributes

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Explicitly declare text files you want to always be normalized and converted
5+
# to native line endings on checkout.
6+
*.css text eol=lf
7+
*.html text eol=lf
8+
*.js text eol=lf
9+
*.jsx text eol=lf
10+
*.json text eol=lf
11+
*.md text eol=lf
12+
13+
# Force images/fonts to be handled as binaries
14+
*.jpg binary
15+
*.jpeg binary
16+
*.gif binary
17+
*.png binary
18+
*.t3x binary
19+
*.t3d binary
20+
*.exe binary
21+
*.data binary
22+
*.ttf binary
23+
*.eof binary
24+
*.eot binary
25+
*.woff binary
26+
*.swf binary
27+
*.mov binary
28+
*.mp4 binary
29+
*.mp3 binary
30+
*.ogg binary
31+
*.flv binary
32+
*.webm binary

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
node_modules
2+
bower_components
3+
4+
coverage
5+
.nyc_output
6+
7+
!.empty_directory
8+
9+
# JetBrains IDEs (IntelliJ/WebStorm)
10+
/.idea/compiler.xml
11+
/.idea/encodings.xml
12+
/.idea/copyright/profiles_settings.xml
13+
/.idea/workspace.xml
14+
/.idea/shelf/
15+
16+
npm-debug.log
17+
18+
desktop\.ini

.idea/healy.iml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jsLibraryMappings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 50 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)