Skip to content

Commit e2becb4

Browse files
authored
Merge pull request #5 from tonymet/feature/npm-audit-2019-01-24
Update gcloud-datastore to 3.0.1 and fix NPM audit
2 parents 34a4139 + 1c2fbdb commit e2becb4

File tree

8 files changed

+1297
-3452
lines changed

8 files changed

+1297
-3452
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
coverage/*

.eslintrc.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"parserOptions": {
3+
"ecmaVersion": 2017
4+
},
5+
"env": {
6+
"es6": true
7+
},
8+
"rules": {
9+
"no-with": 2,
10+
"comma-spacing":[ "error",
11+
{
12+
"before": false,
13+
"after": true
14+
}],
15+
"max-len": [
16+
2,
17+
120
18+
],
19+
"comma-style": [
20+
2,
21+
"last"
22+
],
23+
"indent": [
24+
2,
25+
4,
26+
{
27+
"SwitchCase": 1
28+
}
29+
]
30+
}
31+
}

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
language: node_js
22
node_js:
3-
- "4"
3+
- "11"
4+
- "10"
5+
- "8"
46
# Send coverage data to Coveralls
57
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"

0 commit comments

Comments
 (0)