Skip to content

Commit c3898e0

Browse files
committed
chore: resolve lint errors
1 parent 0a71409 commit c3898e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/repl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const boxen = require( 'boxen' );
1212
const Table = require( 'cli-table3' );
1313

1414
// Check if colors should be disabled
15+
// eslint-disable-next-line no-process-env
1516
if (process.env.NO_COLOR || process.env.GRAPHMAKER_NO_COLOR) {
1617
chalk.level = 0;
1718
}
@@ -28,7 +29,6 @@ const os = require( 'os' );
2829
const { parseArgs } = require( 'util' );
2930
const path = require( 'path' );
3031
const semverCompare = require( 'semver-compare' );
31-
const { table, getBorderCharacters } = require( 'table' );
3232

3333
const { aiFactory
3434
, convert

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"graphmaker": "bin/cli"
88
},
99
"scripts": {
10-
"test": "node --test test/",
10+
"test": "node --test test/*.js",
1111
"compile-constraints": "nearleyc lib/constraint-grammar.ne -o lib/constraint-grammar.js",
1212
"build-css": "npx tailwindcss -i ./docs/css/styles.css -o ./docs/css/tailwind.css --minify",
1313
"build-ts-docs": "npx typedoc --tsconfig .config/tsconfig.json --readme none",

0 commit comments

Comments
 (0)