moving from hexo theme to my own react design

This commit is contained in:
Kim, Jimin 2021-05-15 00:30:19 +09:00
parent 7ff3176072
commit 379c1c60d9
96 changed files with 1990 additions and 50291 deletions

47
source/.eslintrc Normal file
View file

@ -0,0 +1,47 @@
{
"extends": [
"plugin:react/recommended",
"plugin:json/recommended",
"prettier"
],
"settings": {
"node": {
"tryExtensions": [".js", ".jsx", ".json"]
},
"react": {
"version": "17.0"
}
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint"],
"rules": {
"react/jsx-uses-vars": "error",
"react/no-unknown-property": [
"error",
{
"ignore": [
"class",
"onclick",
"onload",
"onsubmit",
"crossorigin"
]
}
],
"react/react-in-jsx-scope": ["off"],
"react/prop-types": ["off"],
"react/display-name": ["off"],
"react/jsx-key": ["off"],
"react/jsx-no-target-blank": [
"error",
{
"allowReferrer": true
}
]
}
}