Skip to content

Commit

Permalink
Commit formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cb1kenobi committed Jun 10, 2024
1 parent cfb8b34 commit ca94bc2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion lefthook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ pre-commit:
commands:
check:
glob: "*.{js,ts,jsx,tsx}"
run: pnpm check
run: pnpm check && git update-index --again
4 changes: 2 additions & 2 deletions test/fs/is-dir.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { describe, expect, it } from 'vitest';
import { isDir } from '../../src/fs/is-dir.js';
import { dirname, join } from 'node:path';
import { fileURLToPath } from 'node:url';
import { describe, expect, it } from 'vitest';
import { isDir } from '../../src/fs/is-dir.js';

describe('fs', () => {
describe('isDir()', () => {
Expand Down
4 changes: 2 additions & 2 deletions test/fs/is-file.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { describe, expect, it } from 'vitest';
import { isFile } from '../../src/fs/is-file.js';
import { dirname, join } from 'node:path';
import { fileURLToPath } from 'node:url';
import { describe, expect, it } from 'vitest';
import { isFile } from '../../src/fs/is-file.js';

describe('fs', () => {
describe('isFile()', () => {
Expand Down
6 changes: 1 addition & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,5 @@
"esModuleInterop": true,
"sourceMap": false
},
"include": [
"./rollup.config.ts",
"./rollup.dts.config.ts",
"./src/**/*.ts",
]
"include": ["./rollup.config.ts", "./rollup.dts.config.ts", "./src/**/*.ts"]
}

0 comments on commit ca94bc2

Please sign in to comment.