for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/**
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see https://ckeditor.com/legal/ckeditor-oss-license
*/
CKEDITOR.editorConfig = function( config ) {
config
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.
CKEDITOR
/** global: CKEDITOR */
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.
// Define changes to default configuration here. For example:
// config.language = 'fr';
// config.uiColor = '#AADC6E';
};
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.