1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-10 00:05:42 +02:00

Tools: Apply eslint rule multiline-comment-style with checkJSDoc option

This commit is contained in:
Laurent Cozic
2023-06-30 09:55:56 +01:00
parent 0c4ba592f6
commit 7591a1182e
34 changed files with 116 additions and 105 deletions

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import Plugin from '../Plugin';
import Joplin from './Joplin';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import Plugin from '../Plugin';
import JoplinData from './JoplinData';
import JoplinPlugins from './JoplinPlugins';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
export default class JoplinClipboard {
private electronClipboard_: any = null;

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import CommandService, { CommandContext, CommandDeclaration, CommandRuntime } from '../../CommandService';
import { Command } from './types';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import Plugin from '../Plugin';
import { ContentScriptType } from './types';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import { ModelType } from '../../../BaseModel';
import BaseItem from '../../../models/BaseItem';
import Resource from '../../../models/Resource';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import eventManager from '../../../eventManager';
/**

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import InteropService from '../../interop/InteropService';
import { Module, ModuleType } from '../../interop/types';
import { ExportModule, ImportModule } from './types';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import Plugin from '../Plugin';
import Logger from '../../../Logger';
import { ContentScriptType, Script } from './types';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import eventManager from '../../../eventManager';
import Setting, { SettingItem as InternalSettingItem, SettingSectionSource } from '../../../models/Setting';
import Plugin from '../Plugin';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import Plugin from '../Plugin';
import JoplinViewsDialogs from './JoplinViewsDialogs';
import JoplinViewsMenuItems from './JoplinViewsMenuItems';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import Plugin from '../Plugin';
import createViewHandle from '../utils/createViewHandle';
import WebviewController, { ContainerType } from '../WebviewController';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import KeymapService from '../../KeymapService';
import { CreateMenuItemOptions, MenuItemLocation } from './types';
import MenuItemController from '../MenuItemController';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import KeymapService from '../../KeymapService';
import { MenuItem, MenuItemLocation } from './types';
import MenuController from '../MenuController';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import Plugin from '../Plugin';
import createViewHandle from '../utils/createViewHandle';
import WebviewController, { ContainerType } from '../WebviewController';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import { ToolbarButtonLocation } from './types';
import Plugin from '../Plugin';
import ToolbarButtonController from '../ToolbarButtonController';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import Plugin from '../Plugin';
import * as fs from 'fs-extra';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
import { ModelType } from '../../../BaseModel';
import eventManager from '../../../eventManager';
import Setting from '../../../models/Setting';

View File

@ -1,3 +1,5 @@
/* eslint-disable multiline-comment-style */
// =================================================================
// Command API types
// =================================================================