Clean up README

This commit is contained in:
Alexej Wolff
2026-05-04 01:38:23 +02:00
parent 97c6db6c80
commit 5e98c60e3e
-23
View File
@@ -63,26 +63,3 @@ server/
## Лицензия ## Лицензия
MIT MIT
import reactDom from 'eslint-plugin-react-dom'
export default defineConfig([
globalIgnores(['dist']),
{
files: ['**/*.{ts,tsx}'],
extends: [
// Other configs...
// Enable lint rules for React
reactX.configs['recommended-typescript'],
// Enable lint rules for React DOM
reactDom.configs.recommended,
],
languageOptions: {
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
tsconfigRootDir: import.meta.dirname,
},
// other options...
},
},
])
```