Skip to content

Commit f1dbe11

Browse files
committed
meta tweaks
closes #64
1 parent a551307 commit f1dbe11

File tree

6 files changed

+8
-15
lines changed

6 files changed

+8
-15
lines changed

Diff for: .editorconfig

-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,3 @@ insert_final_newline = true
1010
[{package.json,*.yml}]
1111
indent_style = space
1212
indent_size = 2
13-
14-
[*.md]
15-
trim_trailing_whitespace = false

Diff for: .travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- 'iojs'
4+
- '5'
5+
- '4'
56
- '0.12'
67
- '0.10'

Diff for: index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
2+
var path = require('path');
23
var gutil = require('gulp-util');
34
var multimatch = require('multimatch');
4-
var path = require('path');
55
var streamfilter = require('streamfilter');
66

77
module.exports = function (pattern, options) {

Diff for: package.json

+1-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"author": {
88
"name": "Sindre Sorhus",
99
"email": "[email protected]",
10-
"url": "http://sindresorhus.com"
10+
"url": "sindresorhus.com"
1111
},
1212
"engines": {
1313
"node": ">=0.10.0"
@@ -37,11 +37,5 @@
3737
"devDependencies": {
3838
"mocha": "*",
3939
"xo": "*"
40-
},
41-
"xo": {
42-
"envs": [
43-
"node",
44-
"mocha"
45-
]
4640
}
4741
}

Diff for: readme.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -138,14 +138,14 @@ Accepts [minimatch options](https://github.com/isaacs/minimatch#options).
138138

139139
#### options.restore
140140

141-
Type: `boolean`
141+
Type: `boolean`<br>
142142
Default: `false`
143143

144144
Restore filtered files.
145145

146146
#### options.passthrough
147147

148-
Type: `boolean`
148+
Type: `boolean`<br>
149149
Default: `true`
150150

151151
When set to `true` filtered files are restored with a PassThrough stream, otherwise, when set to `false`, filtered files are restored as a Readable stream.
@@ -155,4 +155,4 @@ When the stream is Readable it ends by itself, but when PassThrough, you are res
155155

156156
## License
157157

158-
MIT © [Sindre Sorhus](http://sindresorhus.com)
158+
MIT © [Sindre Sorhus](https://sindresorhus.com)

Diff for: test.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
'use strict';
2+
/* eslint-env mocha */
23
var path = require('path');
34
var assert = require('assert');
45
var gutil = require('gulp-util');

0 commit comments

Comments
 (0)