mirror of
https://github.com/go-gitea/gitea.git
synced 2025-12-13 18:32:54 +00:00
Update eslint and all plugins. Many plugins still do not ship type definitions so I had to add stubs. Also, I had to put a few typescript error expectations because if some unknown error in the types. `eslint-plugin-no-jquery` is disabled because it's not compatible with eslint 9 flat config (https://github.com/wikimedia/eslint-plugin-no-jquery/issues/311).
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;
|