Skip to content

Commit d5d1ba0

Browse files
committedNov 10, 2024·
Format
1 parent 234d8cf commit d5d1ba0

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"watch": "bun run --cwd packages/knip watch",
2121
"docs": "bun run --cwd packages/docs dev",
2222
"test": "bun run --cwd packages/knip test",
23-
"format": "biome format .",
23+
"format": "biome check --write",
2424
"lint": "biome lint .",
2525
"ci": "biome ci . && installed-check --no-include-workspace-root --ignore-dev"
2626
},

‎packages/knip/src/plugins/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import { default as eleventy } from './eleventy/index.js';
1717
import { default as eslint } from './eslint/index.js';
1818
import { default as gatsby } from './gatsby/index.js';
1919
import { default as githubActions } from './github-actions/index.js';
20+
import { default as glob } from './glob/index.js';
2021
import { default as graphqlCodegen } from './graphql-codegen/index.js';
2122
import { default as husky } from './husky/index.js';
2223
import { default as jest } from './jest/index.js';
@@ -103,6 +104,7 @@ export const Plugins = {
103104
eslint,
104105
gatsby,
105106
'github-actions': githubActions,
107+
glob,
106108
'graphql-codegen': graphqlCodegen,
107109
husky,
108110
jest,

‎packages/knip/src/types/PluginNames.ts

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export type PluginName =
1818
| 'eslint'
1919
| 'gatsby'
2020
| 'github-actions'
21+
| 'glob'
2122
| 'graphql-codegen'
2223
| 'husky'
2324
| 'jest'
@@ -104,6 +105,7 @@ export const pluginNames = [
104105
'eslint',
105106
'gatsby',
106107
'github-actions',
108+
'glob',
107109
'graphql-codegen',
108110
'husky',
109111
'jest',

0 commit comments

Comments
 (0)
Please sign in to comment.