|
|
il y a 1 mois | |
|---|---|---|
| .. | ||
| README.md | il y a 1 mois | |
| base.js | il y a 1 mois | |
| next.js | il y a 1 mois | |
| package.json | il y a 1 mois | |
| react-internal.js | il y a 1 mois | |
Shared ESLint configurations for the Watch Finished Turbo monorepo.
base.js - Base ESLint configuration with TypeScript supportnext.js - Next.js specific ESLint rulesreact-internal.js - React component library rulesIn package.json:
{
"eslintConfig": {
"extends": ["@watch-finished-turbo/eslint-config/base"]
}
}
Or in eslint.config.js:
import baseConfig from "@watch-finished-turbo/eslint-config/base";
export default [
...baseConfig
// Your custom rules
];