Skip to content

Commit ff338f9

Browse files
committedApr 30, 2018
Fix linting
1 parent 8fdd4e2 commit ff338f9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎test/_negations.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ module.exports = {
5252
'asd.jss.xyz': {
5353
'*.!(js)*.!(xy)': false,
5454
'*.!(js)*.!(xy)*': false,
55-
'*.!(js).!(xy)': false,
55+
'*.!(js).!(xy)': false
5656
},
5757

5858
'asd.jss.xy': {
@@ -102,8 +102,8 @@ module.exports = {
102102
'*.!(js)+': false,
103103
'!(*(.js.js))': true,
104104
'*.!(js)': true,
105-
'*.!(js)*': false, // Bash 4.3 disagrees!
106-
'*.!(js)*.js': false // Bash 4.3 disagrees!
105+
'*.!(js)*': false, // Bash 4.3 disagrees!
106+
'*.!(js)*.js': false // Bash 4.3 disagrees!
107107
},
108108

109109
'a/foo.js.js': {

‎test/bash.extglob2.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ describe('bash extglob2 tests', function() {
5858
[ 'foo', '!(foo)*', false ], // Bash 4.3 disagrees!
5959
[ 'foobar', '!(foo)', true ],
6060
[ 'foobar', '!(foo)*', false ], // Bash 4.3 disagrees!
61-
[ 'moo.cow', '!(*.*).!(*.*)', false ], // Bash 4.3 disagrees!
61+
[ 'moo.cow', '!(*.*).!(*.*)', false ], // Bash 4.3 disagrees!
6262
[ 'mad.moo.cow', '!(*.*).!(*.*)', false ],
6363
[ 'mucca.pazza', 'mu!(*(c))?.pa!(*(z))?', false ],
6464
[ 'fff', '!(f)', true ],

‎test/reference.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var negations = require('./_negations');
88

99
describe('running extglob against minimatch tests', function() {
1010
forOwn(negations, function(val, fixture) {
11-
if (fixture !== 'asd.jss.xyz') return
11+
if (fixture !== 'asd.jss.xyz') return;
1212
describe('"' + fixture + '"', function() {
1313
forOwn(val, function(expected, pattern) {
1414
var exp = expected === false ? ' not' : '';

0 commit comments

Comments
 (0)
Please sign in to comment.