We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26f9ca6 commit 02da762Copy full SHA for 02da762
.eslintrc.js
@@ -16,7 +16,7 @@
16
module.exports = {
17
root: true,
18
parserOptions: {
19
- ecmaVersion: 2018,
+ ecmaVersion: 2020,
20
sourceType: 'module',
21
ecmaFeatures: {
22
modules: true
cli/bin/csvgen
@@ -1,7 +1,7 @@
1
#!/usr/bin/env node
2
3
-const { Command } = require("commander");
4
const Chance = require("chance");
+const { Command } = require("commander");
5
6
const program = new Command();
7
const chance = new Chance();
@@ -64,7 +64,7 @@ program
64
65
for (let index = 0; index < count; index++) {
66
const info = [];
67
- headers.forEach((header) => {
+ headers.forEach(() => {
68
const data = chance.guid();
69
info.push(data);
70
});
0 commit comments