Skip to content

Commit 4f87c0b

Browse files
committed
refactor
1 parent 60ed7d5 commit 4f87c0b

26 files changed

+1495
-1014
lines changed

Diff for: .editorconfig

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@ indent_style = space
99
insert_final_newline = true
1010
trim_trailing_whitespace = true
1111

12-
[{**/{actual,fixtures,expected,templates}/**,*.md}]
12+
[*.md]
1313
trim_trailing_whitespace = false
14-
insert_final_newline = false

Diff for: .eslintrc.json

+13
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,24 @@
11
{
2+
"extends": [
3+
"eslint:recommended"
4+
],
5+
26
"env": {
37
"browser": false,
48
"es6": true,
59
"node": true,
610
"mocha": true
711
},
812

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

Diff for: .travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@ sudo: false
22
os:
33
- linux
44
- osx
5+
- windows
56
language: node_js
67
node_js:
78
- node
9+
- '11'
10+
- '10'
811
- '9'
912
- '8'
1013
- '7'

Diff for: .verb.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
## Usage
2-
3-
```js
4-
var {%= camelcase(name) %} = require('{%= name %}');
5-
```
2+
{%= apidocs("index.js") %}

Diff for: LICENSE

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2017, Jon Schlinkert.
3+
Copyright (c) 2017-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
@@ -9,13 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99
copies of the Software, and to permit persons to whom the Software is
1010
furnished to do so, subject to the following conditions:
1111

12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
1414

1515
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1616
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1717
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

0 commit comments

Comments
 (0)