Skip to content

Commit

Permalink
Removed not needed jsdoc comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
niegowski committed Dec 20, 2022
1 parent 59a1142 commit b641309
Show file tree
Hide file tree
Showing 22 changed files with 0 additions and 44 deletions.
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/attributecommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ import { Command, type Editor } from 'ckeditor5/src/core';
*
* The command checks the {@link module:engine/model/model~Model#schema} to decide if it can be enabled
* for the current selection and to which nodes the attribute can be applied.
*
* @extends module:core/command~Command
*/
export default class AttributeCommand extends Command {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/bold.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ import BoldUI from './bold/boldui';
*
* This is a "glue" plugin which loads the {@link module:basic-styles/bold/boldediting~BoldEditing bold editing feature}
* and {@link module:basic-styles/bold/boldui~BoldUI bold UI feature}.
*
* @extends module:core/plugin~Plugin
*/
export default class Bold extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/bold/boldediting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ const BOLD = 'bold';
*
* It registers the `'bold'` command and introduces the `bold` attribute in the model which renders to the view
* as a `<strong>` element.
*
* @extends module:core/plugin~Plugin
*/
export default class BoldEditing extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/bold/boldui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ const BOLD = 'bold';

/**
* The bold UI feature. It introduces the Bold button.
*
* @extends module:core/plugin~Plugin
*/
export default class BoldUI extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/code.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ import '../theme/code.css';
*
* This is a "glue" plugin which loads the {@link module:basic-styles/code/codeediting~CodeEditing code editing feature}
* and {@link module:basic-styles/code/codeui~CodeUI code UI feature}.
*
* @extends module:core/plugin~Plugin
*/
export default class Code extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/code/codeediting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ const HIGHLIGHT_CLASS = 'ck-code_selected';
*
* It registers the `'code'` command and introduces the `code` attribute in the model which renders to the view
* as a `<code>` element.
*
* @extends module:core/plugin~Plugin
*/
export default class CodeEditing extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/code/codeui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ const CODE = 'code';

/**
* The code UI feature. It introduces the Code button.
*
* @extends module:core/plugin~Plugin
*/
export default class CodeUI extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/italic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ import ItalicUI from './italic/italicui';
*
* This is a "glue" plugin which loads the {@link module:basic-styles/italic/italicediting~ItalicEditing} and
* {@link module:basic-styles/italic/italicui~ItalicUI} plugins.
*
* @extends module:core/plugin~Plugin
*/
export default class Italic extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/italic/italicediting.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ const ITALIC = 'italic';
*
* It registers the `'italic'` command, the <kbd>Ctrl+I</kbd> keystroke and introduces the `italic` attribute in the model
* which renders to the view as an `<i>` element.
*
* @extends module:core/plugin~Plugin
*/
export default class ItalicEditing extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/italic/italicui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ const ITALIC = 'italic';

/**
* The italic UI feature. It introduces the Italic button.
*
* @extends module:core/plugin~Plugin
*/
export default class ItalicUI extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/strikethrough.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ import StrikethroughUI from './strikethrough/strikethroughui';
*
* This is a "glue" plugin which loads the {@link module:basic-styles/strikethrough/strikethroughediting~StrikethroughEditing} and
* {@link module:basic-styles/strikethrough/strikethroughui~StrikethroughUI} plugins.
*
* @extends module:core/plugin~Plugin
*/
export default class Strikethrough extends Plugin {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ const STRIKETHROUGH = 'strikethrough';
* It registers the `'strikethrough'` command, the <kbd>Ctrl+Shift+X</kbd> keystroke and introduces the
* `strikethroughsthrough` attribute in the model which renders to the view
* as a `<s>` element.
*
* @extends module:core/plugin~Plugin
*/
export default class StrikethroughEditing extends Plugin {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ const STRIKETHROUGH = 'strikethrough';

/**
* The strikethrough UI feature. It introduces the Strikethrough button.
*
* @extends module:core/plugin~Plugin
*/
export default class StrikethroughUI extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/subscript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ import SubscriptUI from './subscript/subscriptui';
*
* It loads the {@link module:basic-styles/subscript/subscriptediting~SubscriptEditing} and
* {@link module:basic-styles/subscript/subscriptui~SubscriptUI} plugins.
*
* @extends module:core/plugin~Plugin
*/
export default class Subscript extends Plugin {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ const SUBSCRIPT = 'subscript';
*
* It registers the `sub` command and introduces the `sub` attribute in the model which renders to the view
* as a `<sub>` element.
*
* @extends module:core/plugin~Plugin
*/
export default class SubscriptEditing extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/subscript/subscriptui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ const SUBSCRIPT = 'subscript';

/**
* The subscript UI feature. It introduces the Subscript button.
*
* @extends module:core/plugin~Plugin
*/
export default class SubscriptUI extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/superscript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ import SuperscriptUI from './superscript/superscriptui';
*
* It loads the {@link module:basic-styles/superscript/superscriptediting~SuperscriptEditing} and
* {@link module:basic-styles/superscript/superscriptui~SuperscriptUI} plugins.
*
* @extends module:core/plugin~Plugin
*/
export default class Superscript extends Plugin {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ const SUPERSCRIPT = 'superscript';
*
* It registers the `super` command and introduces the `super` attribute in the model which renders to the view
* as a `<super>` element.
*
* @extends module:core/plugin~Plugin
*/
export default class SuperscriptEditing extends Plugin {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ const SUPERSCRIPT = 'superscript';

/**
* The superscript UI feature. It introduces the Superscript button.
*
* @extends module:core/plugin~Plugin
*/
export default class SuperscriptUI extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/underline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ import UnderlineUI from './underline/underlineui';
*
* This is a "glue" plugin which loads the {@link module:basic-styles/underline/underlineediting~UnderlineEditing} and
* {@link module:basic-styles/underline/underlineui~UnderlineUI} plugins.
*
* @extends module:core/plugin~Plugin
*/
export default class Underline extends Plugin {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ const UNDERLINE = 'underline';
*
* It registers the `'underline'` command, the <kbd>Ctrl+U</kbd> keystroke
* and introduces the `underline` attribute in the model which renders to the view as an `<u>` element.
*
* @extends module:core/plugin~Plugin
*/
export default class UnderlineEditing extends Plugin {
/**
Expand Down
2 changes: 0 additions & 2 deletions packages/ckeditor5-basic-styles/src/underline/underlineui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ const UNDERLINE = 'underline';

/**
* The underline UI feature. It introduces the Underline button.
*
* @extends module:core/plugin~Plugin
*/
export default class UnderlineUI extends Plugin {
/**
Expand Down

0 comments on commit b641309

Please sign in to comment.