[tslint] apply jsdoc-format rule
diff --git a/src/debugAdapter/goDebug.ts b/src/debugAdapter/goDebug.ts
index e465ec7..7805230 100644
--- a/src/debugAdapter/goDebug.ts
+++ b/src/debugAdapter/goDebug.ts
@@ -223,7 +223,7 @@
 	envFile?: string;
 	backend?: string;
 	output?: string;
-	/** Delve LoadConfig parameters **/
+	/** Delve LoadConfig parameters */
 	dlvLoadConfig?: LoadConfig;
 	dlvToolPath: string;
 	/** Delve Version */
@@ -249,7 +249,7 @@
 	host?: string;
 	trace?: 'verbose' | 'log' | 'error';
 	backend?: string;
-	/** Delve LoadConfig parameters **/
+	/** Delve LoadConfig parameters */
 	dlvLoadConfig?: LoadConfig;
 	dlvToolPath: string;
 	/** Delve Version */
diff --git a/src/goTest.ts b/src/goTest.ts
index 20af060..84c8843 100644
--- a/src/goTest.ts
+++ b/src/goTest.ts
@@ -18,12 +18,12 @@
 export type TestAtCursorCmd = 'debug' | 'test' | 'benchmark';
 
 /**
-* Executes the unit test at the primary cursor using `go test`. Output
-* is sent to the 'Go' channel.
-*
-* @param goConfig Configuration for the Go extension.
-* @param cmd Whether the command is test , benchmark or debug.
-*/
+ * Executes the unit test at the primary cursor using `go test`. Output
+ * is sent to the 'Go' channel.
+ * @param goConfig Configuration for the Go extension.
+ * @param cmd Whether the command is test , benchmark or debug.
+ * @param args
+ */
 export function testAtCursor(goConfig: vscode.WorkspaceConfiguration, cmd: TestAtCursorCmd, args: any) {
 	const editor = vscode.window.activeTextEditor;
 	if (!editor) {
diff --git a/tslint.json b/tslint.json
index e09ba7d..c758164 100644
--- a/tslint.json
+++ b/tslint.json
@@ -55,7 +55,7 @@
 		// 	"options": ["always-prefix"]
 		// },
 		"interface-over-type-literal": true,
-		// "jsdoc-format": true,
+		"jsdoc-format": true,
 		"label-position": true,
 		"max-classes-per-file": {
 			"options": 2