aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/LintPanelStore.ts
blob: 502f9c59549d7cd476c994bfd8cf7be6630e7ea6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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);
  }
}