Skip to content

Commit 5af0b60

Browse files
committedMar 19, 2014
Latest v1.0.9 hatch
0 parents  commit 5af0b60

File tree

1,189 files changed

+357888
-0
lines changed

Some content is hidden

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

1,189 files changed

+357888
-0
lines changed
 

‎.gitignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
dump.rdb
2+
lib-cov
3+
*.log
4+
*.csv
5+
*.out
6+
*.pid
7+
pids
8+
logs
9+
results
10+
node_modules
11+
bower_components
12+
npm-debug.log
13+
.idea
14+
.DS_Store
15+
log/*.log
16+
.c9revisions
17+
coverage.html
18+
.settings
19+
doc
20+
21+
public/upload/*
22+
!public/upload/*.keep
23+
coverage
24+
deps
25+
public/javascripts/cache*
26+
public/javascripts/i18n.js
27+
man

‎.jshintrc

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
// Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options
3+
// Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc
4+
// Documentation: http://www.jshint.com/docs/
5+
"browser": true,
6+
"esnext": true,
7+
"globals": {},
8+
"globalstrict": false,
9+
"quotmark": true,
10+
"smarttabs": true,
11+
"trailing": true,
12+
"undef": true,
13+
"unused": true,
14+
"node": true
15+
}

0 commit comments

Comments
 (0)
Please sign in to comment.