Chore: comment line filters pending implementation

It's breaking the build due to a linting error.
This commit is contained in:
Matias Chomicki
2022-10-06 15:11:35 +02:00
parent 90296bdadc
commit 84bfe76a6a
@@ -63,12 +63,12 @@ const DURATION_COMPLETIONS: Completion[] = ['$__interval', '$__range', '1m', '5m
})
);
const LINE_FILTER_COMPLETIONS: Completion[] = ['|=', '!=', '|~', '!~'].map((item) => ({
/*TODO: Implement. const LINE_FILTER_COMPLETIONS: Completion[] = ['|=', '!=', '|~', '!~'].map((item) => ({
type: 'LINE_FILTER',
label: `${item} ""`,
insertText: `${item} "$0"`,
isSnippet: true,
}));
}));*/
async function getAllHistoryCompletions(dataProvider: CompletionDataProvider): Promise<Completion[]> {
const history = await dataProvider.getHistory();