Joachim Van Herwegen 6248ed0938 refactor: Replace linting configurations
The previous package was outdated, preventing us from updating TS.
This one also lints YAML and JSON,
and applies many more rules to the test files,
explaining all the changes in this PR.
2023-11-02 09:49:17 +01:00

12 lines
205 B
TypeScript

import { BaseLogger } from './Logger';
/**
* A logger that does nothing on a log message.
*/
export class VoidLogger extends BaseLogger {
public log(): this {
// Do nothing
return this;
}
}