Skip to content

Commit

Permalink
Release 1.0.0 (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
JRJurman authored Jun 12, 2017
1 parent b5226c1 commit 1bf74b4
Show file tree
Hide file tree
Showing 38 changed files with 1,522 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
extends: standard
plugins:
- standard
- promise
env:
node: true
jasmine: true
rules:
block-scoped-var: 2
class-methods-use-this: 2
consistent-return: 2
curly: 2
eqeqeq: 2
no-alert: 2
no-else-return: 2
no-implicit-coercion: 2
no-multi-str: 2
no-new: 2
no-return-assign: 2
wrap-iife: 2
yoda: 2
brace-style: 2
indent:
- 2
- 2
- SwitchCase: 1
space-before-function-paren:
- 2
- never
keyword-spacing: 2
key-spacing: 2
no-trailing-spaces: 2
quotes:
- 2
- single
- avoid-escape
space-infix-ops: 2
spaced-comment: 2
arrow-spacing: 2
no-var: 2
prefer-template: 2

prefer-const: 1
prefer-spread: 1
no-useless-call: 1
sort-imports: 1
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Library Distributable
dist

# Transformed Spec Files
tests/*.js

# Logs
logs
*.log
*.log.*

# Dependency directory
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
node_modules
Loading

0 comments on commit 1bf74b4

Please sign in to comment.