Project initial

This commit is contained in:
chengpu
2022-12-03 00:54:53 +08:00
commit 5092a5e717
502 changed files with 50820 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
{
"extends": [
"airbnb",
"airbnb/hooks",
"plugin:jest/recommended",
"plugin:prettier/recommended",
"prettier",
"prettier/react"
],
"parser": "babel-eslint",
"env": {
"browser": true,
"jest": true
},
"plugins": [
"prettier",
"jest"
],
"rules": {
"import/prefer-default-export": "off",
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js"
]
}
],
"react/no-find-dom-node": 0,
"class-methods-use-this": "off",
"jsx-a11y/anchor-is-valid": [
"error",
{
"components": [
"Link"
],
"specialLink": [
"to",
"hrefLeft",
"hrefRight"
],
"aspects": [
"noHref",
"invalidHref",
"preferButton"
]
}
]
}
}