diff --git a/.github/.keepalive b/.github/.keepalive
deleted file mode 100644
index 42e2cf2..0000000
--- a/.github/.keepalive
+++ /dev/null
@@ -1 +0,0 @@
-2023-11-01T01:16:24.025Z
diff --git a/docs/types/index.d.ts b/docs/types/index.d.ts
index 8c458ff..0a01dda 100644
--- a/docs/types/index.d.ts
+++ b/docs/types/index.d.ts
@@ -71,7 +71,7 @@ interface WriteFile {
 	* var opts = { 'flag': 'r' };
 	* writeFile( './beep/boop.txt', 'beep boop\n', opts, onWrite );
 	*/
-	( file: string | Buffer | number, data: string | Buffer, options: Options | string, clbk: Callback ): void; // tslint-disable-line max-line-length
+	( file: string | Buffer | number, data: string | Buffer, options: Options | string, clbk: Callback ): void;
 
 	/**
 	* Asynchronously writes data to a file.
@@ -89,7 +89,7 @@ interface WriteFile {
 	*
 	* writeFile( './beep/boop.txt', 'beep boop\n', onWrite );
 	*/
-	( file: string | Buffer | number, data: string | Buffer, clbk: Callback ): void; // tslint-disable-line max-line-length
+	( file: string | Buffer | number, data: string | Buffer, clbk: Callback ): void;
 
 	/**
 	* Synchronously writes data to a file.
@@ -105,7 +105,7 @@ interface WriteFile {
 	*     throw err;
 	* }
 	*/
-	sync( file: string | Buffer | number, data: string | Buffer, options?: Options | string ): Error | null; // tslint-disable-line max-line-length
+	sync( file: string | Buffer | number, data: string | Buffer, options?: Options | string ): Error | null;
 }
 
 /**