Skip to content

Commit

Permalink
Ignore some assert functions
Browse files Browse the repository at this point in the history
  • Loading branch information
sondr3 committed May 27, 2016
1 parent 5acea64 commit 63f97fb
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@
},
"xo": {
"space": true,
"rules": {
"new-cap": 0
},
"ignores": [
"generators/app/templates/**",
"generators/boilerplate/templates/**",
Expand Down
2 changes: 1 addition & 1 deletion test/gulp.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test('creates package.json', () => {
});

test('package.json contains correct packages', () => {
assert.JSONFileContent('package.json', {
assert.JSONFileContent('package.json', { // eslint-disable-line
devDependencies: {
'autoprefixer': '^6.2.3',
'browser-sync': '^2.11.0',
Expand Down
2 changes: 1 addition & 1 deletion test/uploading/aws.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test('creates package.json file', () => {
});

test('contain correct uploading packages', () => {
assert.JSONFileContent('package.json', {
assert.JSONFileContent('package.json', { // eslint-disable-line
devDependencies: {
'gulp-awspublish': '^3.2.0',
'concurrent-transform': '^1.0.0'
Expand Down
2 changes: 1 addition & 1 deletion test/uploading/rsync.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test('creates package.json file', () => {
});

test('contain correct uploading packages', () => {
assert.JSONFileContent('package.json', {
assert.JSONFileContent('package.json', { // eslint-disable-line
devDependencies: {
'gulp-rsync': '^0.0.6'
}
Expand Down

0 comments on commit 63f97fb

Please sign in to comment.