Skip to content
This repository was archived by the owner on Mar 6, 2023. It is now read-only.

Commit 47d592f

Browse files
committed
Added missing files.
1 parent d6b8252 commit 47d592f

File tree

5 files changed

+56
-0
lines changed

5 files changed

+56
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
33

4+
.idea
5+
bower_components
6+
dist
7+
lib
8+
node_modules
9+
410
# User-specific files
511
*.suo
612
*.user

src/.bowerrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory" : "bower_components"
3+
}

src/.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# http://editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true

src/.jshintrc

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"curly": false,
3+
"eqeqeq": true,
4+
"immed": true,
5+
"latedef": true,
6+
"newcap": true,
7+
"noarg": true,
8+
"sub": true,
9+
"undef": true,
10+
"boss": true,
11+
"eqnull": true,
12+
"browser": true,
13+
"smarttabs": true,
14+
"globals": {
15+
"jQuery": true,
16+
"angular": true,
17+
"console": true,
18+
"$": true,
19+
"_": true,
20+
"moment": true,
21+
"describe": true,
22+
"beforeEach": true,
23+
"module": true,
24+
"inject": true,
25+
"it": true,
26+
"expect": true,
27+
"xdescribe": true,
28+
"xit": true,
29+
"spyOn": true
30+
}
31+
}

src/.npmignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
temp/
2+
dist/
3+
node_modules/
4+
_SpecRunner.html
5+
.DS_Store
6+
test-results.xml

0 commit comments

Comments
 (0)