Skip to content

Commit 1bf74b4

Browse files
authored
Release 1.0.0 (#1)
1 parent b5226c1 commit 1bf74b4

38 files changed

+1522
-0
lines changed

.eslintrc.yml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
extends: standard
2+
plugins:
3+
- standard
4+
- promise
5+
env:
6+
node: true
7+
jasmine: true
8+
rules:
9+
block-scoped-var: 2
10+
class-methods-use-this: 2
11+
consistent-return: 2
12+
curly: 2
13+
eqeqeq: 2
14+
no-alert: 2
15+
no-else-return: 2
16+
no-implicit-coercion: 2
17+
no-multi-str: 2
18+
no-new: 2
19+
no-return-assign: 2
20+
wrap-iife: 2
21+
yoda: 2
22+
brace-style: 2
23+
indent:
24+
- 2
25+
- 2
26+
- SwitchCase: 1
27+
space-before-function-paren:
28+
- 2
29+
- never
30+
keyword-spacing: 2
31+
key-spacing: 2
32+
no-trailing-spaces: 2
33+
quotes:
34+
- 2
35+
- single
36+
- avoid-escape
37+
space-infix-ops: 2
38+
spaced-comment: 2
39+
arrow-spacing: 2
40+
no-var: 2
41+
prefer-template: 2
42+
43+
prefer-const: 1
44+
prefer-spread: 1
45+
no-useless-call: 1
46+
sort-imports: 1

.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Library Distributable
2+
dist
3+
4+
# Transformed Spec Files
5+
tests/*.js
6+
7+
# Logs
8+
logs
9+
*.log
10+
*.log.*
11+
12+
# Dependency directory
13+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
14+
node_modules

0 commit comments

Comments
 (0)