Skip to content

Commit

Permalink
fix: disable linting for one specific line
Browse files Browse the repository at this point in the history
  • Loading branch information
rejas committed Jul 17, 2019
1 parent 151115c commit 58808fa
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion commitlint.config.js
Expand Up @@ -2,4 +2,3 @@
module.exports = {
extends: ['@commitlint/config-angular']
};

2 changes: 1 addition & 1 deletion src/inject/index.js
Expand Up @@ -84,7 +84,7 @@ function handleVinylStream(sources, opt) {
if (target.isStream()) {
return cb(error('Streams not supported for target templates!'));
}
collected.then(function (collection) {
collected.then(function (collection) { // eslint-disable-line promise/prefer-await-to-then
target.contents = getNewContent(target, collection, opt);
this.push(target);
cb();
Expand Down
1 change: 0 additions & 1 deletion src/tags/index.js
@@ -1,4 +1,3 @@

/**
* Constants
*/
Expand Down

0 comments on commit 58808fa

Please sign in to comment.