Skip to content

Commit 7e848ad

Browse files
committed
run update
1 parent 17c1a16 commit 7e848ad

File tree

5 files changed

+29
-25
lines changed

5 files changed

+29
-25
lines changed

.editorconfig

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,13 @@
1-
# http://editorconfig.org
1+
# http://editorconfig.org/
22
root = true
33

44
[*]
5-
indent_style = space
6-
end_of_line = lf
75
charset = utf-8
6+
end_of_line = lf
87
indent_size = 2
9-
trim_trailing_whitespace = true
8+
indent_style = space
109
insert_final_newline = true
10+
trim_trailing_whitespace = true
1111

1212
[*.md]
1313
trim_trailing_whitespace = false
14-
insert_final_newline = false
15-
16-
[**/{actual,fixtures,expected}/**]
17-
trim_trailing_whitespace = false
18-
insert_final_newline = false
19-
20-
[**/templates/**]
21-
trim_trailing_whitespace = false
22-
insert_final_newline = false

.eslintrc.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
2-
"ecmaFeatures": {
3-
"modules": true,
4-
"experimentalObjectRestSpread": true
5-
},
2+
"extends": [
3+
"eslint:recommended"
4+
],
65

76
"env": {
87
"browser": false,
@@ -11,6 +10,15 @@
1110
"mocha": true
1211
},
1312

13+
"parserOptions":{
14+
"ecmaVersion": 9,
15+
"sourceType": "module",
16+
"ecmaFeatures": {
17+
"modules": true,
18+
"experimentalObjectRestSpread": true
19+
}
20+
},
21+
1422
"globals": {
1523
"document": false,
1624
"navigator": false,

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

.travis.yml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
sudo: false
2+
os:
3+
- linux
4+
- osx
5+
- windows
26
language: node_js
37
node_js:
4-
- stable
8+
- node
9+
- '11'
10+
- '10'
11+
- '9'
12+
- '8'
13+
- '7'
14+
- '6'
515
- '5'
616
- '4'
7-
- '0.12'
8-
- '0.10'
9-
matrix:
10-
fast_finish: true
11-
allow_failures:
12-
- node_js: '0.10'

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2016, Jon Schlinkert.
3+
Copyright (c) 2014-present, Jon Schlinkert.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)