Skip to content

Commit ba82dc9

Browse files
committed
fix: 키보드 이벤트 설정 해제
1 parent 880b6d8 commit ba82dc9

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

eslint.config.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,7 @@ export default tseslint.config({
3030
},
3131
},
3232
ignores: ['node_modules', 'dist', 'dist-ssr', '*.config.js', '*.config.ts'],
33-
extends: [
34-
js.configs.recommended,
35-
...tseslint.configs.recommended,
36-
prettierConfig,
37-
],
33+
extends: [js.configs.recommended, ...tseslint.configs.recommended, prettierConfig],
3834
rules: {
3935
...reactHooks.configs.recommended.rules,
4036
...jsxA11y.configs.recommended.rules,
@@ -55,5 +51,7 @@ export default tseslint.config({
5551
'react/jsx-pascal-case': 'error',
5652
'react-refresh/only-export-components': ['warn', { allowConstantExport: true }],
5753
'prettier/prettier': 'error',
54+
'jsx-a11y/click-events-have-key-events': 'off',
55+
'jsx-a11y/no-noninteractive-element-interactions': 'off',
5856
},
5957
});

0 commit comments

Comments
 (0)