Skip to content

Commit

Permalink
refactor: change file name
Browse files Browse the repository at this point in the history
  • Loading branch information
spence-s committed Apr 7, 2024
1 parent bfa3c6b commit 32087e8
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {type Rule} from 'eslint';
import formatterPretty, {type LintResult} from 'eslint-formatter-pretty';
import meow from 'meow';
import type {LintOptions} from './types.js';
import {XO} from './index.js';
import {XO} from './xo.js';

const cli = meow(
`
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/lint-files/config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import fs from 'node:fs/promises';
import path from 'node:path';
import _test, {type TestFn} from 'ava'; // eslint-disable-line ava/use-test
import dedent from 'dedent';
import {XO} from '../../lib/index.js';
import {XO} from '../../lib/xo.js';
import {copyTestProject} from '../helpers/copy-test-project.js';

const test = _test as TestFn<{cwd: string}>;
Expand Down
2 changes: 1 addition & 1 deletion test/lint-text/config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import fs from 'node:fs/promises';
import path from 'node:path';
import _test, {type TestFn} from 'ava'; // eslint-disable-line ava/use-test
import dedent from 'dedent';
import {XO} from '../../lib/index.js';
import {XO} from '../../lib/xo.js';
import {copyTestProject} from '../helpers/copy-test-project.js';

const test = _test as TestFn<{cwd: string}>;
Expand Down
2 changes: 1 addition & 1 deletion test/lint-text/plugins.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import path from 'node:path';
import fs from 'node:fs/promises';
import test from 'ava';
import dedent from 'dedent';
import {XO} from '../../lib/index.js';
import {XO} from '../../lib/xo.js';
import {copyTestProject} from '../helpers/copy-test-project.js';

let cwd: string;
Expand Down

0 comments on commit 32087e8

Please sign in to comment.