@nethru/ui 2.1.53 → 2.1.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base/editor/Editor.js +1 -3
- package/package.json +1 -1
package/base/editor/Editor.js
CHANGED
|
@@ -222,8 +222,7 @@ function makeEslinter(format, eslintRules, onEslintUpdate, customVariables, read
|
|
|
222
222
|
let hints = [];
|
|
223
223
|
const config = {
|
|
224
224
|
env: {
|
|
225
|
-
es6: true
|
|
226
|
-
browser: true
|
|
225
|
+
es6: true
|
|
227
226
|
},
|
|
228
227
|
parserOptions: {
|
|
229
228
|
ecmaVersion: 6
|
|
@@ -232,7 +231,6 @@ function makeEslinter(format, eslintRules, onEslintUpdate, customVariables, read
|
|
|
232
231
|
"semi": ["error", "always"],
|
|
233
232
|
"func-names": "off",
|
|
234
233
|
"no-unused-expressions": "off",
|
|
235
|
-
"no-undef": "error",
|
|
236
234
|
...eslintRules
|
|
237
235
|
}
|
|
238
236
|
};
|