8
0
Kamil Piechaczek 7 лет назад
Родитель
Сommit
997c59f5ac

+ 3 - 0
packages/ckeditor5-build-inline/tests/manual/ckeditor-cjs-version.js

@@ -3,6 +3,9 @@
  * For licensing, see LICENSE.md.
  */
 
+/* eslint-env commonjs */
+/* globals window, document, console */
+
 const InlineEditor = require( '../../build/ckeditor' );
 
 InlineEditor.create( document.querySelector( '#editor' ) )

+ 2 - 0
packages/ckeditor5-build-inline/tests/manual/ckeditor.js

@@ -3,6 +3,8 @@
  * For licensing, see LICENSE.md.
  */
 
+/* globals window, document, console */
+
 import InlineEditor from '../../build/ckeditor';
 
 InlineEditor.create( document.querySelector( '#editor' ) )