We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 191c287 commit 593054aCopy full SHA for 593054a
Tools/eslint-config-cesium/CHANGES.md
@@ -1,6 +1,9 @@
1
Change Log
2
==========
3
4
+### 6.0.1 - 2019-01-23
5
+* Allow ES6 global variables in Node.js code.
6
+
7
### 6.0.0 - 2018-05-01
8
* Upgrade to eslint 5.x and it's new default rules.
9
* Set ecmaVersion to 2017 for Node.js code.
Tools/eslint-config-cesium/node.js
@@ -3,7 +3,8 @@
module.exports = {
extends: './index.js',
env: {
- node: true
+ node: true,
+ es6: true
},
parserOptions: {
10
ecmaVersion: 2017
Tools/eslint-config-cesium/package.json
@@ -1,6 +1,6 @@
{
"name": "eslint-config-cesium",
- "version": "6.0.0",
+ "version": "6.0.1",
"description": "ESLint shareable configs for Cesium",
"homepage": "http://cesiumjs.org",
"license": "Apache-2.0",
0 commit comments