Skip to content

Commit 599754b

Browse files
author
yuji
committed
init
0 parents  commit 599754b

24 files changed

Lines changed: 1069 additions & 0 deletions

.csslintrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"adjoining-classes": false,
3+
"box-model": false,
4+
"compatible-vendor-prefixes": false,
5+
"duplicate-background-images": false,
6+
"import": false,
7+
"important": false,
8+
"outline-none": false,
9+
"overqualified-elements": false,
10+
"text-indent": false
11+
}

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 4
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.eslintrc

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"node": true,
5+
"amd": true
6+
},
7+
"rules": {
8+
"curly": 0,
9+
"no-new-func": 0,
10+
"no-eval": 1,
11+
"no-return-assign": 0,
12+
"no-unused-expressions": 0,
13+
"no-underscore-dangle": 0,
14+
"semi": 0,
15+
"strict": 0,
16+
"no-empty": 1,
17+
"no-constant-condition": 1,
18+
"no-unused-vars": [1, {"vars": "local", "args": "after-used"}]
19+
}
20+
}

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* text=auto
2+
CONTRIBUTING.md export-ignore

.gitignore

Lines changed: 167 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
2+
### Node ###
3+
# Logs
4+
logs
5+
*.log
6+
7+
# Runtime data
8+
pids
9+
*.pid
10+
*.seed
11+
12+
# Directory for instrumented libs generated by jscoverage/JSCover
13+
lib-cov
14+
15+
# Coverage directory used by tools like istanbul
16+
coverage
17+
18+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
19+
.grunt
20+
21+
# Compiled binary addons (http://nodejs.org/api/addons.html)
22+
build/Release
23+
24+
# Dependency directory
25+
# Commenting this out is preferred by some people, see
26+
# https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
27+
node_modules
28+
29+
# Users Environment Variables
30+
.lock-wscript
31+
32+
33+
### Bower ###
34+
bower_components
35+
components
36+
37+
38+
### vim ###
39+
[._]*.s[a-w][a-z]
40+
[._]s[a-w][a-z]
41+
*.un~
42+
Session.vim
43+
.netrwhist
44+
*~
45+
46+
47+
### PhpStorm ###
48+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
49+
50+
## Directory-based project format
51+
.idea/
52+
# if you remove the above rule, at least ignore user-specific stuff:
53+
# .idea/workspace.xml
54+
# .idea/tasks.xml
55+
# and these sensitive or high-churn files:
56+
# .idea/dataSources.ids
57+
# .idea/dataSources.xml
58+
# .idea/sqlDataSources.xml
59+
# .idea/dynamic.xml
60+
61+
## File-based project format
62+
*.ipr
63+
*.iml
64+
*.iws
65+
66+
## Additional for IntelliJ
67+
out/
68+
69+
# generated by mpeltonen/sbt-idea plugin
70+
.idea_modules/
71+
72+
# generated by JIRA plugin
73+
atlassian-ide-plugin.xml
74+
75+
# generated by Crashlytics plugin (for Android Studio and Intellij)
76+
com_crashlytics_export_strings.xml
77+
78+
79+
### SublimeText ###
80+
# workspace files are user-specific
81+
*.sublime-workspace
82+
83+
# project files should be checked into the repository, unless a significant
84+
# proportion of contributors will probably not be using SublimeText
85+
# *.sublime-project
86+
87+
#sftp configuration file
88+
sftp-config.json
89+
90+
91+
### SVN ###
92+
.svn/
93+
94+
95+
### WebStorm ###
96+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
97+
98+
## Directory-based project format
99+
.idea/
100+
# if you remove the above rule, at least ignore user-specific stuff:
101+
# .idea/workspace.xml
102+
# .idea/tasks.xml
103+
# and these sensitive or high-churn files:
104+
# .idea/dataSources.ids
105+
# .idea/dataSources.xml
106+
# .idea/sqlDataSources.xml
107+
# .idea/dynamic.xml
108+
109+
## File-based project format
110+
*.ipr
111+
*.iml
112+
*.iws
113+
114+
## Additional for IntelliJ
115+
out/
116+
117+
# generated by mpeltonen/sbt-idea plugin
118+
.idea_modules/
119+
120+
# generated by JIRA plugin
121+
atlassian-ide-plugin.xml
122+
123+
# generated by Crashlytics plugin (for Android Studio and Intellij)
124+
com_crashlytics_export_strings.xml
125+
126+
127+
### Windows ###
128+
# Windows image file caches
129+
Thumbs.db
130+
ehthumbs.db
131+
132+
# Folder config file
133+
Desktop.ini
134+
135+
# Recycle Bin used on file shares
136+
$RECYCLE.BIN/
137+
138+
# Windows Installer files
139+
*.cab
140+
*.msi
141+
*.msm
142+
*.msp
143+
144+
145+
### OSX ###
146+
.DS_Store
147+
.AppleDouble
148+
.LSOverride
149+
150+
# Icon must end with two \r
151+
Icon
152+
153+
154+
# Thumbnails
155+
._*
156+
157+
# Files that might appear on external disk
158+
.Spotlight-V100
159+
.Trashes
160+
161+
# Directories potentially created on remote AFP share
162+
.AppleDB
163+
.AppleDesktop
164+
Network Trash Folder
165+
Temporary Items
166+
.apdisk
167+

.jsbeautifyrc

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"indent_size": 4,
3+
"indent_char": " ",
4+
"indent_level": 0,
5+
"indent_with_tabs": false,
6+
"preserve_newlines": true,
7+
"max_preserve_newlines": 10,
8+
"jslint_happy": false,
9+
"space_after_anon_function": false,
10+
"brace_style": "collapse",
11+
"keep_array_indentation": false,
12+
"keep_function_indentation": false,
13+
"space_before_conditional": true,
14+
"break_chained_methods": false,
15+
"eval_code": false,
16+
"unescape_strings": false,
17+
"wrap_line_length": 0
18+
}

.npmignore

Whitespace-only changes.

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
language: node_js
2+
node_js:
3+
- '0.10'

CONTRIBUTING.md

Whitespace-only changes.

0 commit comments

Comments
 (0)