Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jhildenbiddle committed Jan 26, 2018
1 parent 7fc982a commit 6c44a51
Show file tree
Hide file tree
Showing 34 changed files with 13,899 additions and 1 deletion.
39 changes: 39 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
module.exports = {
"env": {
"browser" : true,
"commonjs": true,
"es6" : true,
"node" : true
},
"extends": "eslint:recommended",
"plugins": [],
"parserOptions": {
"sourceType" : "module"
},
"rules": {
"array-bracket-spacing" : ["error", "never"],
"array-callback-return" : ["error"],
"block-scoped-var" : ["error"],
"block-spacing" : ["error", "always"],
"curly" : ["error"],
"dot-notation" : ["error"],
"eqeqeq" : ["error"],
"indent" : ["error", 4],
"linebreak-style" : ["error", "unix"],
"no-console" : ["warn"],
"no-floating-decimal" : ["error"],
"no-implicit-coercion" : ["error"],
"no-implicit-globals" : ["error"],
"no-loop-func" : ["error"],
"no-return-assign" : ["error"],
"no-template-curly-in-string": ["error"],
"no-unneeded-ternary" : ["error"],
"no-unused-vars" : ["error", { "args": "none" }],
"no-useless-computed-key" : ["error"],
"no-useless-return" : ["error"],
"no-var" : ["error"],
"prefer-const" : ["error"],
"quotes" : ["error", "single"],
"semi" : ["error", "always"]
}
};
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Folders
coverage
node_modules

# Files
*.log

# OS
._*
.cache
.DS_Store
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: node_js
node_js: "stable"

notifications:
email: false

before_install:
- stty cols 80

script: "npm run test-remote"

after_success:
- bash <(curl -s https://codecov.io/bash) -e TRAVIS_NODE_VERSION
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Change Log

## 1.0.0 - 2017-11-26

**Added**

- Initial release
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 John Hildenbiddle
Copyright (c) 2018 John Hildenbiddle

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading

0 comments on commit 6c44a51

Please sign in to comment.