mirror of
https://github.com/alibaba/open-code-review.git
synced 2026-08-11 17:54:28 +00:00
- Add ESLint with typescript-eslint and react-hooks plugin
- Add size-limit to monitor initial bundle size (150 kB threshold)
- Rename .js configs to .cjs for ESM compatibility ("type": "module")
- Fix no-useless-escape and no-useless-assignment lint errors
- Update pages-ci.yml with lint and size check steps
6 lines
114 B
JavaScript
6 lines
114 B
JavaScript
module.exports = {
|
|
plugins: {
|
|
tailwindcss: { config: './tailwind.config.cjs' },
|
|
autoprefixer: {}
|
|
}
|
|
};
|