@@ -1,5 +1,4 @@
{
- "browser": true,
"esnext": true,
"immed": true,
"loopfunc": true,
@@ -3,6 +3,8 @@
* For licensing, see LICENSE.md.
*/
+/* globals document */
+
/**
* Basic HTML writer, it uses the native `innerHTML` property for basic conversion
* from DocumentFragment to an HTML string.
+/* globals document, DOMParser */
import BasicHtmlWriter from './basichtmlwriter.js';
import DomConverter from '../view/domconverter.js';
import { NBSP_FILLER } from '../view/filler.js';
+/* globals Range, Node */
import ViewText from './text.js';
import ViewElement from './element.js';
import ViewPosition from './position.js';
+/* globals window, Range, Text */
import { keyCodes } from '../../utils/keyboard.js';
+/* globals window */
import Observer from './observer.js';
import { startsWithFiller, getDataWithoutFiller } from '../filler.js';
+/* globals Range */
"expr": true,