Initial deployment setup
Deploy staging / deploy (push) Failing after 6s

This commit is contained in:
root
2026-08-31 16:45:24 +09:00
commit 33453ecc55
3475 changed files with 850363 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
import reactPlugin from 'eslint-plugin-react';
import compilerPlugin from 'eslint-plugin-react-compiler';
import hooksPlugin from 'eslint-plugin-react-hooks';
/** @type {Awaited<import('typescript-eslint').Config>} */
export default [
{
files: ['**/*.ts', '**/*.tsx'],
plugins: {
react: reactPlugin,
'react-compiler': compilerPlugin,
'react-hooks': hooksPlugin,
},
rules: {
...reactPlugin.configs['jsx-runtime'].rules,
...hooksPlugin.configs.recommended.rules,
'react/prop-types': 'off',
'react/jsx-key': 'error',
'react-hooks/exhaustive-deps': 'off',
'react/display-name': 'off',
'react-hooks/rules-of-hooks': 'off',
'react-compiler/react-compiler': 'error',
},
languageOptions: {
globals: {
React: 'writable',
},
},
},
];