mirror of
https://github.com/Afilmory/afilmory
synced 2026-02-01 22:48:17 +00:00
- Temporarily turned off various react-hooks rules in the ESLint configuration to address current development needs. - Updated the usePhotoViewerTransitions hook to encapsulate visibility handling in a new hideTriggerElement function for improved code clarity and reusability. Signed-off-by: Innei <tukon479@gmail.com>
85 lines
2.5 KiB
JavaScript
85 lines
2.5 KiB
JavaScript
// @ts-check
|
|
import { globalIgnores } from 'eslint/config'
|
|
import { defineConfig } from 'eslint-config-hyoban'
|
|
|
|
import checkI18nJson from './plugins/eslint/eslint-check-i18n-json.js'
|
|
import recursiveSort from './plugins/eslint/eslint-recursive-sort.js'
|
|
|
|
export default defineConfig(
|
|
{
|
|
formatting: false,
|
|
lessOpinionated: true,
|
|
preferESM: false,
|
|
react: true,
|
|
tailwindCSS: true,
|
|
},
|
|
|
|
{
|
|
settings: {
|
|
tailwindcss: {
|
|
whitelist: ['center'],
|
|
},
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/triple-slash-reference': 0,
|
|
'unicorn/prefer-math-trunc': 'off',
|
|
'unicorn/no-static-only-class': 'off',
|
|
'@eslint-react/no-clone-element': 0,
|
|
// TailwindCSS v4 not support
|
|
'tailwindcss/no-custom-classname': 0,
|
|
'@eslint-react/hooks-extra/no-direct-set-state-in-use-effect': 0,
|
|
// NOTE: Disable this temporarily
|
|
'react-compiler/react-compiler': 0,
|
|
'no-restricted-syntax': 0,
|
|
|
|
// disable react compiler rules for now
|
|
'react-hooks/no-unused-directives': 'off',
|
|
'react-hooks/static-components': 'off',
|
|
'react-hooks/use-memo': 'off',
|
|
'react-hooks/component-hook-factories': 'off',
|
|
'react-hooks/preserve-manual-memoization': 'off',
|
|
'react-hooks/immutability': 'off',
|
|
'react-hooks/globals': 'off',
|
|
'react-hooks/refs': 'off',
|
|
'react-hooks/set-state-in-effect': 'off',
|
|
'react-hooks/error-boundaries': 'off',
|
|
'react-hooks/purity': 'off',
|
|
'react-hooks/set-state-in-render': 'off',
|
|
'react-hooks/unsupported-syntax': 'off',
|
|
'react-hooks/config': 'off',
|
|
'react-hooks/gating': 'off',
|
|
|
|
'no-restricted-globals': [
|
|
'error',
|
|
{
|
|
name: 'location',
|
|
message:
|
|
"Since you don't use the same router instance in electron and browser, you can't use the global location to get the route info. \n\n" +
|
|
'You can use `useLocaltion` or `getReadonlyRoute` to get the route info.',
|
|
},
|
|
],
|
|
},
|
|
},
|
|
|
|
// @ts-expect-error
|
|
{
|
|
files: ['locales/**/*.json'],
|
|
plugins: {
|
|
'recursive-sort': recursiveSort,
|
|
'check-i18n-json': checkI18nJson,
|
|
},
|
|
rules: {
|
|
'recursive-sort/recursive-sort': 'error',
|
|
'check-i18n-json/valid-i18n-keys': 'error',
|
|
'check-i18n-json/no-extra-keys': 'error',
|
|
},
|
|
},
|
|
{
|
|
files: ['**/*.tsx'],
|
|
rules: {
|
|
'@stylistic/jsx-self-closing-comp': 'error',
|
|
},
|
|
},
|
|
globalIgnores(['apps/ssr/src/index.html.ts']),
|
|
)
|