Skip to content

Commit 27d0a0d

Browse files
committedApr 6, 2019
added utm support
1 parent c48bcf1 commit 27d0a0d

10 files changed

+1034
-973
lines changed
 

‎.eslintrc.json

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es6": true,
5+
"node": true,
6+
"mocha": true
7+
},
8+
"extends": "eslint:recommended",
9+
"parserOptions": {
10+
"ecmaVersion": 2017,
11+
"sourceType": "module"
12+
},
13+
"rules": {
14+
"arrow-parens": ["error", "as-needed"],
15+
"camelcase": "error",
16+
"comma-dangle": ["error", { "objects": "always-multiline" }],
17+
"indent": ["error", 2],
18+
"linebreak-style": ["error", "unix"],
19+
"no-console": "off",
20+
"no-multiple-empty-lines": "error",
21+
"no-unused-vars": ["error", { "args": "none" }],
22+
"no-var": "error",
23+
"object-curly-spacing": ["error", "always", { "objectsInObjects": false }],
24+
"prefer-arrow-callback": "error",
25+
"prefer-const": "error",
26+
"prefer-rest-params": "error",
27+
"prefer-spread": "error",
28+
"quotes": ["error", "single"],
29+
"semi": ["error", "always"],
30+
"space-before-function-paren": ["error", "always"]
31+
}
32+
}

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,5 @@ typings/
5959

6060
# lock files
6161
*package-lock.json
62+
63+
*.tif

‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright {yyyy} {name of copyright owner}
189+
Copyright 2019 Daniel J. Dufour
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)
Please sign in to comment.