aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/LintPanelStore.ts
blob: f81587fae712984576ed43d079abc1ece27feb4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */

import { closeLintPanel, openLintPanel } from '@codemirror/lint';

import type EditorStore from './EditorStore';
import PanelStore from './PanelStore';

export default class LintPanelStore extends PanelStore {
  constructor(store: EditorStore) {
    super('cm-panel-lint', openLintPanel, closeLintPanel, store);
  }
}