You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-16 00:14:34 +02:00
Tools: Enable eslint rule comma-dangle: always-multiline for functions
This commit is contained in:
@ -1312,7 +1312,7 @@ class Setting extends BaseModel {
|
||||
onClick: () => {
|
||||
shim.openOrCreateFile(
|
||||
this.customCssFilePath(Setting.customCssFilenames.RENDERED_MARKDOWN),
|
||||
'/* For styling the rendered Markdown */'
|
||||
'/* For styling the rendered Markdown */',
|
||||
);
|
||||
},
|
||||
type: SettingItemType.Button,
|
||||
@ -1329,7 +1329,7 @@ class Setting extends BaseModel {
|
||||
onClick: () => {
|
||||
shim.openOrCreateFile(
|
||||
this.customCssFilePath(Setting.customCssFilenames.JOPLIN_APP),
|
||||
`/* For styling the entire Joplin app (except the rendered Markdown, which is defined in \`${Setting.customCssFilenames.RENDERED_MARKDOWN}\`) */`
|
||||
`/* For styling the entire Joplin app (except the rendered Markdown, which is defined in \`${Setting.customCssFilenames.RENDERED_MARKDOWN}\`) */`,
|
||||
);
|
||||
},
|
||||
type: SettingItemType.Button,
|
||||
|
Reference in New Issue
Block a user