Skip to content

Commit 022d986

Browse files
committed
chore: wip
1 parent bd861c4 commit 022d986

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.vscode/dictionary.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ deps
1717
destructurable
1818
dtsx
1919
entrypoints
20+
gitlint
2021
heroicons
2122
iconify
2223
lockb

cli renamed to gitlint

File renamed without changes.
File renamed without changes.

src/config.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
import type { BinaryConfig } from './types'
1+
import type { GitLintConfig } from './types'
22
import { loadConfig } from 'bunfig'
33

4-
export const defaultConfig: BinaryConfig = {
5-
from: 'localhost:5173',
4+
export const defaultConfig: GitLintConfig = {
65
verbose: true,
76
}
87

98
// eslint-disable-next-line antfu/no-top-level-await
10-
export const config: BinaryConfig = await loadConfig({
11-
name: 'binary',
9+
export const config: GitLintConfig = await loadConfig({
10+
name: 'gitlint',
1211
defaultConfig,
1312
})

src/types.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
export interface BinaryConfig {
2-
from: string
1+
export interface GitLintConfig {
32
verbose: boolean
43
}

0 commit comments

Comments
 (0)