mirror of https://github.com/go-gitea/gitea.git
11 lines
356 B
TypeScript
11 lines
356 B
TypeScript
import type {Config} from 'updates';
|
|
|
|
export default {
|
|
exclude: [
|
|
'@mcaptcha/vanilla-glue', // breaking changes in rc versions need to be handled
|
|
'@stylistic/eslint-plugin-js', // need to migrate to eslint 9
|
|
'cropperjs', // need to migrate to v2 but v2 is not compatible with v1
|
|
'tailwindcss', // need to migrate
|
|
],
|
|
} satisfies Config;
|