mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-05-07 22:04:36 +02:00
13 lines
346 B
TypeScript
13 lines
346 B
TypeScript
import { GeneralCommands } from '../constants';
|
|
|
|
export const ignoreMsgCommand = (command: string) => {
|
|
const toIgnore = [
|
|
GeneralCommands.toVSCode.logging.verbose,
|
|
GeneralCommands.toVSCode.logging.info,
|
|
GeneralCommands.toVSCode.logging.warn,
|
|
GeneralCommands.toVSCode.logging.error
|
|
];
|
|
|
|
return toIgnore.includes(command);
|
|
};
|