Skip to content
This repository was archived by the owner on Jan 22, 2021. It is now read-only.

Commit a450a11

Browse files
committed
Merge pull request #50 from lookback/feature/es6
Rewrite in ES2015
2 parents 2c7379c + 446870b commit a450a11

25 files changed

+2741
-570
lines changed

.eslintrc

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,31 @@
11
{
2+
"extends": "eslint:recommended",
23
"rules": {
34
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
45
"strict": 0,
56
"quotes": [2, "single"],
67
"no-underscore-dangle": 0,
7-
"curly": 0
8+
"curly": 0,
9+
"no-unused-vars": 1,
10+
"no-console": 0,
11+
"no-var": 2
812
},
913

1014
"env": {
11-
"browser": true,
1215
"node": true,
13-
"jquery": true,
1416
"meteor": true,
1517
"es6": true
1618
},
1719

1820
"globals": {
19-
"Mailer": false
21+
"Mailer": true,
22+
"Utils": true,
23+
"juice": false,
24+
"FlowRouter": false,
25+
"Router": false,
26+
"TemplateHelpers": true,
27+
"SSR": false,
28+
"Picker": false,
29+
"Routing": true
2030
}
2131
}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Help is appreciated in order to hammer out potential issues and bugs.
4040
meteor add lookback:emails
4141
```
4242

43-
[Annotated source](http://lookback.github.io/meteor-emails/docs/emails.html)
43+
[Annotated source](http://lookback.github.io/meteor-emails/docs/mailer.html)
4444

4545
A `Mailer` global will exported on the *server*.
4646

0 commit comments

Comments
 (0)