Skip to content

Commit

Permalink
First Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
okamoai committed Jan 31, 2018
0 parents commit a932044
Show file tree
Hide file tree
Showing 117 changed files with 13,889 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": ["env", "stage-2", "stage-3"]
}

12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root = true

[*]
end_of_line = lf
charset = utf-8
indent_style = space
indent_size = 2

[*.{html,ejs}]
indent_style = space
indent_size = 4

6 changes: 6 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dist
node_modules
sample
src/static
src/js-concat/_entry/o1-jquery-3.1.1.js
src/js-concat/_entry/o2-jquery.easing.1.3.js
10 changes: 10 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"extends": ["eslint-config-airbnb/base"],
"rules": {
"semi": ["error", "never"],
"comma-dangle": ["error", "always-multiline"],
"arrow-parens": ["error", "as-needed"],
"import/no-extraneous-dependencies": ["off"],
"no-new": "off"
}
}
99 changes: 99 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
### https://raw.github.com/github/gitignore/7751c25c6662ce6f9dc50f014e37156298ccf065/Global/windows.gitignore

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Windows Installer files
*.cab
*.msi
*.msm
*.msp

# Windows shortcuts
*.lnk


### https://raw.github.com/github/gitignore/7751c25c6662ce6f9dc50f014e37156298ccf065/Global/osx.gitignore

*.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon


# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk


### https://raw.github.com/github/gitignore/7751c25c6662ce6f9dc50f014e37156298ccf065/Node.gitignore

# Logs
logs
*.log
npm-debug.log*

# Runtime data
pids
*.pid
*.seed

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules
jspm_packages

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history

# Project build directory
sample
dist/development
src/postcss/_icon
src/postcss/_sprite
src/sass/_icon
src/sass/_sprite
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v8.9.4
Loading

0 comments on commit a932044

Please sign in to comment.