Skip to content

Commit 58808fa

Browse files
author
Veeck
committed
fix: disable linting for one specific line
1 parent 151115c commit 58808fa

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

Diff for: commitlint.config.js

-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22
module.exports = {
33
extends: ['@commitlint/config-angular']
44
};
5-

Diff for: src/inject/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function handleVinylStream(sources, opt) {
8484
if (target.isStream()) {
8585
return cb(error('Streams not supported for target templates!'));
8686
}
87-
collected.then(function (collection) {
87+
collected.then(function (collection) { // eslint-disable-line promise/prefer-await-to-then
8888
target.contents = getNewContent(target, collection, opt);
8989
this.push(target);
9090
cb();

Diff for: src/tags/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
/**
32
* Constants
43
*/

0 commit comments

Comments
 (0)