fix more linting issues

This commit is contained in:
Philipp Kühn
2020-09-24 00:37:31 +02:00
parent ac33eb483e
commit 617cdd4d99
8 changed files with 12 additions and 12 deletions

View File

@@ -10,8 +10,8 @@ declare module '@tiptap/core/src/Editor' {
}
}
export const starInputRegex = /(?:^|\s)((?:\*)((?:[^\*]+))(?:\*))$/gm
export const starPasteRegex = /(?:^|\s)((?:\*)((?:[^\*]+))(?:\*))/gm
export const starInputRegex = /(?:^|\s)((?:\*)((?:[^*]+))(?:\*))$/gm
export const starPasteRegex = /(?:^|\s)((?:\*)((?:[^*]+))(?:\*))/gm
export const underscoreInputRegex = /(?:^|\s)((?:_)((?:[^_]+))(?:_))$/gm
export const underscorePasteRegex = /(?:^|\s)((?:_)((?:[^_]+))(?:_))/gm