1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-06 09:19:22 +02:00

Tools: Apply rule @typescript-eslint/comma-dangle

This commit is contained in:
Laurent Cozic
2020-11-12 19:23:54 +00:00
parent d20694e52c
commit 42799b0662
3 changed files with 14 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ const useKeymap = (): [
Error,
(keymapItems: KeymapItem[])=> void,
(commandName: string, accelerator: string)=> void,
(commandName: string)=> void
(commandName: string)=> void,
] => {
const [keymapItems, setKeymapItems] = useState<KeymapItem[]>(() => allKeymapItems());
const [keymapError, setKeymapError] = useState<Error>(null);