Skip to content

Commit

Permalink
open source
Browse files Browse the repository at this point in the history
  • Loading branch information
camsong committed Nov 22, 2015
1 parent 46d3393 commit 20c3ae6
Show file tree
Hide file tree
Showing 13 changed files with 1,253 additions and 25 deletions.
3 changes: 3 additions & 0 deletions .babelrc
@@ -0,0 +1,3 @@
{
presets: ["es2015", "stage-0"]
}
12 changes: 12 additions & 0 deletions .editorconfig
@@ -0,0 +1,12 @@
# EditorConfig helps developers define and maintain
# consistent coding styles between different editors and IDEs.

root = true

[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
indent_style = space
indent_size = 2
17 changes: 17 additions & 0 deletions .eslintrc
@@ -0,0 +1,17 @@
{
"extends": "eslint-config-airbnb",
"env": {
"browser": true,
"mocha": true,
"node": true
},
"rules": {
"valid-jsdoc": 2,
"no-param-reassign": 0,
"comma-dangle": 0,
"one-var": 0,
"no-else-return": 1,
"no-unused-expressions": 0,
"indent": 1
}
}
29 changes: 4 additions & 25 deletions .gitignore
@@ -1,27 +1,6 @@
# Logs
logs
.DS_Store
*.log

# Runtime data
pids
*.pid
*.seed

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

# Coverage directory used by tools like istanbul
coverage

# 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 directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
lib
coverage
logs
5 changes: 5 additions & 0 deletions .npmignore
@@ -0,0 +1,5 @@
.DS_Store
*.log
examples
test
coverage
7 changes: 7 additions & 0 deletions .travis.yml
@@ -0,0 +1,7 @@
language: node_js
node_js:
- "5"
- "4"
script:
- npm run lint
- npm test
3 changes: 3 additions & 0 deletions README.md
@@ -0,0 +1,3 @@
# oui-dom-events [![Build Status](https://travis-ci.org/oneuijs/oui-dom-events.svg)](https://travis-ci.org/oneuijs/oui-dom-events) [![npm version](https://badge.fury.io/js/oui-dom-events.svg)](http://badge.fury.io/js/oui-dom-events)

DOM events manager with namespace support

0 comments on commit 20c3ae6

Please sign in to comment.