From 5f560e151e7b74afb3993d0007e457edab628287 Mon Sep 17 00:00:00 2001
From: Manuel Thalmann <m@nuth.ch>
Date: Tue, 11 May 2021 01:00:27 +0000
Subject: [PATCH] Fix further linting-errors

---
 gulp/TaskFunction.ts | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/gulp/TaskFunction.ts b/gulp/TaskFunction.ts
index c5011a8..8bbd5f7 100644
--- a/gulp/TaskFunction.ts
+++ b/gulp/TaskFunction.ts
@@ -1,12 +1,16 @@
-import { TaskFunction }from "gulp";
+import { TaskFunction } from "gulp";
 
 /**
  * @inheritdoc
  */
 declare global
 {
+    /**
+     * Represents a gulp-task.
+     */
+    // eslint-disable-next-line @typescript-eslint/naming-convention
     interface Function extends Partial<TaskFunction>
     { }
 }
 
-export {};
\ No newline at end of file
+export {};