fix more linting errors

This commit is contained in:
Philipp Kühn
2020-09-24 00:29:05 +02:00
parent aefb4ca8e6
commit ac33eb483e
106 changed files with 310 additions and 274 deletions

View File

@@ -6,4 +6,4 @@ export default (editor: Editor) => new Plugin({
props: {
editable: () => editor.options.editable,
},
})
})

View File

@@ -25,4 +25,4 @@ export default (editor: Editor) => new Plugin({
},
},
},
})
})

View File

@@ -2,9 +2,9 @@ import { keymap } from 'prosemirror-keymap'
import { baseKeymap } from 'prosemirror-commands'
import { dropCursor } from 'prosemirror-dropcursor'
import { gapCursor } from 'prosemirror-gapcursor'
import { undoInputRule } from 'prosemirror-inputrules'
import editable from './editable'
import focus from './focus'
import { undoInputRule } from 'prosemirror-inputrules'
export default [
() => dropCursor(),
@@ -13,4 +13,4 @@ export default [
() => keymap(baseKeymap),
editable,
focus,
]
]