You've already forked joplin
							
							
				mirror of
				https://github.com/laurent22/joplin.git
				synced 2025-10-31 00:07:48 +02:00 
			
		
		
		
	Tools: Enable eslint rule comma-dangle: always-multiline for functions
This commit is contained in:
		| @@ -43,12 +43,12 @@ export default function NoteBodyViewer(props: Props) { | ||||
| 		props.highlightedKeywords, | ||||
| 		props.noteResources, | ||||
| 		props.paddingBottom, | ||||
| 		props.noteHash | ||||
| 		props.noteHash, | ||||
| 	); | ||||
|  | ||||
| 	const onResourceLongPress = useOnResourceLongPress( | ||||
| 		props.onJoplinLinkClick, | ||||
| 		dialogBoxRef | ||||
| 		dialogBoxRef, | ||||
| 	); | ||||
|  | ||||
| 	const onMessage = useOnMessage( | ||||
| @@ -56,7 +56,7 @@ export default function NoteBodyViewer(props: Props) { | ||||
| 		props.noteBody, | ||||
| 		props.onMarkForDownload, | ||||
| 		props.onJoplinLinkClick, | ||||
| 		onResourceLongPress | ||||
| 		onResourceLongPress, | ||||
| 	); | ||||
|  | ||||
| 	const onLoadEnd = useCallback(() => { | ||||
|   | ||||
| @@ -125,7 +125,7 @@ export default function useSource(noteBody: string, noteMarkupLanguage: number, | ||||
| 				noteMarkupLanguage, | ||||
| 				bodyToRender, | ||||
| 				rendererTheme, | ||||
| 				mdOptions | ||||
| 				mdOptions, | ||||
| 			); | ||||
|  | ||||
| 			if (cancelled) return; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user