1 | /** |
||
2 | * @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. |
||
3 | * For licensing, see https://ckeditor.com/legal/ckeditor-oss-license |
||
4 | */ |
||
5 | |||
6 | CKEDITOR.editorConfig = function( config ) { |
||
0 ignored issues
–
show
The variable
CKEDITOR seems to be never declared. If this is a global, consider adding a /** global: CKEDITOR */ comment.
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed. To learn more about declaring variables in Javascript, see the MDN. ![]() |
|||
7 | // Define changes to default configuration here. For example: |
||
8 | // config.language = 'fr'; |
||
9 | // config.uiColor = '#AADC6E'; |
||
10 | }; |
||
11 |
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.