File tree 3 files changed +5
-1
lines changed
3 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 20
20
"watch" : " bun run --cwd packages/knip watch" ,
21
21
"docs" : " bun run --cwd packages/docs dev" ,
22
22
"test" : " bun run --cwd packages/knip test" ,
23
- "format" : " biome format . " ,
23
+ "format" : " biome check --write " ,
24
24
"lint" : " biome lint ." ,
25
25
"ci" : " biome ci . && installed-check --no-include-workspace-root --ignore-dev"
26
26
},
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ import { default as eleventy } from './eleventy/index.js';
17
17
import { default as eslint } from './eslint/index.js' ;
18
18
import { default as gatsby } from './gatsby/index.js' ;
19
19
import { default as githubActions } from './github-actions/index.js' ;
20
+ import { default as glob } from './glob/index.js' ;
20
21
import { default as graphqlCodegen } from './graphql-codegen/index.js' ;
21
22
import { default as husky } from './husky/index.js' ;
22
23
import { default as jest } from './jest/index.js' ;
@@ -103,6 +104,7 @@ export const Plugins = {
103
104
eslint,
104
105
gatsby,
105
106
'github-actions' : githubActions ,
107
+ glob,
106
108
'graphql-codegen' : graphqlCodegen ,
107
109
husky,
108
110
jest,
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ export type PluginName =
18
18
| 'eslint'
19
19
| 'gatsby'
20
20
| 'github-actions'
21
+ | 'glob'
21
22
| 'graphql-codegen'
22
23
| 'husky'
23
24
| 'jest'
@@ -104,6 +105,7 @@ export const pluginNames = [
104
105
'eslint' ,
105
106
'gatsby' ,
106
107
'github-actions' ,
108
+ 'glob' ,
107
109
'graphql-codegen' ,
108
110
'husky' ,
109
111
'jest' ,
You can’t perform that action at this time.
0 commit comments