Skip to content

Commit 9ba825f

Browse files
author
orearow
committed
This is my practice repository
0 parents  commit 9ba825f

37 files changed

+12129
-0
lines changed

.bowerrc

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

.editorconfig

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
8+
[*]
9+
10+
# Change these settings to your own preference
11+
indent_style = space
12+
indent_size = 2
13+
14+
# We recommend you to keep these unchanged
15+
end_of_line = lf
16+
charset = utf-8
17+
trim_trailing_whitespace = true
18+
insert_final_newline = true
19+
20+
[*.md]
21+
trim_trailing_whitespace = false

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/node_modules
2+
/dist
3+
/.tmp
4+
/.sass-cache
5+
/bower_components

.jscsrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"requireCamelCaseOrUpperCaseIdentifiers": true,
3+
"requireCapitalizedConstructors": true,
4+
"requireParenthesesAroundIIFE": true,
5+
"validateQuoteMarks": "'"
6+
}

.jshintrc

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"bitwise": true,
3+
"browser": true,
4+
"curly": true,
5+
"eqeqeq": true,
6+
"esnext": true,
7+
"latedef": true,
8+
"noarg": true,
9+
"node": true,
10+
"strict": true,
11+
"undef": true,
12+
"unused": true,
13+
"globals": {
14+
"angular": false
15+
}
16+
}

.yo-rc.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"generator-karma": {
3+
"base-path": "../",
4+
"frameworks": "jasmine",
5+
"browsers": "PhantomJS",
6+
"app-files": "app/scripts/**/*.js",
7+
"files-comments": "bower:js,endbower",
8+
"bower-components-path": "bower_components",
9+
"test-files": "test/mock/**/*.js,test/spec/**/*.js"
10+
}
11+
}

0 commit comments

Comments
 (0)