eslint-plugin-tsdoc
Version:
An ESLint plugin that validates TypeScript doc comments
15 lines • 623 B
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
Object.defineProperty(exports, "__esModule", { value: true });
exports.Debug = void 0;
class Debug {
// To debug the plugin, temporarily uncomment the body of this function
static log(message) {
// message = require("process").pid + ": " + message;
// console.log(message);
// require('fs').writeFileSync('C:\\Git\\log.txt', message + '\r\n', { flag: 'as' });
}
}
exports.Debug = Debug;
//# sourceMappingURL=Debug.js.map
;