Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed Nov 10, 2024
1 parent 234d8cf commit d5d1ba0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"watch": "bun run --cwd packages/knip watch",
"docs": "bun run --cwd packages/docs dev",
"test": "bun run --cwd packages/knip test",
"format": "biome format .",
"format": "biome check --write",
"lint": "biome lint .",
"ci": "biome ci . && installed-check --no-include-workspace-root --ignore-dev"
},
Expand Down
2 changes: 2 additions & 0 deletions packages/knip/src/plugins/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { default as eleventy } from './eleventy/index.js';
import { default as eslint } from './eslint/index.js';
import { default as gatsby } from './gatsby/index.js';
import { default as githubActions } from './github-actions/index.js';
import { default as glob } from './glob/index.js';
import { default as graphqlCodegen } from './graphql-codegen/index.js';
import { default as husky } from './husky/index.js';
import { default as jest } from './jest/index.js';
Expand Down Expand Up @@ -103,6 +104,7 @@ export const Plugins = {
eslint,
gatsby,
'github-actions': githubActions,
glob,
'graphql-codegen': graphqlCodegen,
husky,
jest,
Expand Down
2 changes: 2 additions & 0 deletions packages/knip/src/types/PluginNames.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export type PluginName =
| 'eslint'
| 'gatsby'
| 'github-actions'
| 'glob'
| 'graphql-codegen'
| 'husky'
| 'jest'
Expand Down Expand Up @@ -104,6 +105,7 @@ export const pluginNames = [
'eslint',
'gatsby',
'github-actions',
'glob',
'graphql-codegen',
'husky',
'jest',
Expand Down

0 comments on commit d5d1ba0

Please sign in to comment.