refactor: rename folders

This commit is contained in:
Anthony Fu
2023-03-24 10:01:44 +01:00
parent ab850b0ae4
commit 4ef978a092
12 changed files with 56 additions and 82 deletions

View File

@@ -0,0 +1,19 @@
module.exports = {
extends: [
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'@antfu/eslint-config-ts',
],
settings: {
react: {
version: '17.0',
},
},
rules: {
'jsx-quotes': [
'error',
'prefer-double',
],
'react/react-in-jsx-scope': 'off',
},
}