Skip to content

Commit

Permalink
lichen-community-systemsGH-6: Add es6 as a linting environment.
Browse files Browse the repository at this point in the history
  • Loading branch information
duhrer committed Jan 26, 2023
1 parent bd68000 commit 7b0b38e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"extends": "eslint-config-fluid",
"env": {
"browser": true
"browser": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 8
Expand Down
1 change: 0 additions & 1 deletion src/js/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
*
* Licensed under the MIT license, see LICENSE for details.
*/
/*global Uint8Array*/
(function (fluid) {
"use strict";
var youme = fluid.registerNamespace("youme");
Expand Down
2 changes: 0 additions & 2 deletions src/js/test/webMidiMock.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
*
* Licensed under the MIT license, see LICENSE for details.
*/

/* globals Map, Promise */
(function (fluid) {
"use strict";
var youme = fluid.registerNamespace("youme");
Expand Down
2 changes: 1 addition & 1 deletion tests/js/message-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Licensed under the MIT license, see LICENSE for details.
*/
/*global jqUnit, Uint8Array*/
/*global jqUnit */
(function (fluid) {
"use strict";
var youme = fluid.registerNamespace("youme");
Expand Down

0 comments on commit 7b0b38e

Please sign in to comment.