Skip to content

Commit

Permalink
Fix ESLint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ybiquitous committed Dec 22, 2023
1 parent 0997e8b commit 7e45b0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion __tests__/engines.test.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { describe, it, beforeEach } from 'node:test';
import { describe, it } from 'node:test';
import assert from 'node:assert/strict';
import { execFileSync } from 'node:child_process';
import { readFileSync } from 'node:fs';
Expand Down
3 changes: 2 additions & 1 deletion __tests__/index.test.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { describe, it, beforeEach } from 'node:test';
import { beforeEach, describe, it } from 'node:test';
import assert from 'node:assert/strict';
import fs from 'node:fs';

import stylelint from 'stylelint';

import config from '../index.js';

describe('flags no warnings with valid css', () => {
Expand Down

0 comments on commit 7e45b0b

Please sign in to comment.