Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davedoesdev committed Feb 29, 2024
1 parent 3c883f6 commit b591cdc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018,
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
Expand Down
4 changes: 3 additions & 1 deletion test/common.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/*globals path: false,
util: false,
argv: false,
fsq_dir: false,
constants: false,
Expand Down Expand Up @@ -39,7 +40,8 @@ global.rimraf = util.callbackify(require('rimraf').rimraf);
global.async = require('async');
global.wu = require('wu');
global.constants = require('constants');
before(async () => {
before(async () =>
{
({ expect: global.expect } = await import('chai'));
});
global.cp_remote = require('cp-remote');
Expand Down
3 changes: 2 additions & 1 deletion test/mpfsq/mpfsq.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"use strict";

(async function () {
(async function ()
{

var options = JSON.parse(Buffer.from(process.argv[2], 'hex')),
QlobberFSQ = require('../..').QlobberFSQ,
Expand Down

0 comments on commit b591cdc

Please sign in to comment.