mirror of https://github.com/go-gitea/gitea.git
19 lines
354 B
TypeScript
19 lines
354 B
TypeScript
import type {KnipConfig} from 'knip';
|
|
|
|
export default {
|
|
entry: [
|
|
'*.ts',
|
|
'tools/**/*.ts',
|
|
'tests/e2e/**/*.ts',
|
|
],
|
|
ignoreDependencies: [
|
|
// dependencies used in Makefile or tools
|
|
'@primer/octicons',
|
|
'markdownlint-cli',
|
|
'nolyfill',
|
|
'spectral-cli-bundle',
|
|
'vue-tsc',
|
|
'webpack-cli',
|
|
],
|
|
} satisfies KnipConfig;
|