Skip to content

Commit

Permalink
Merge pull request #101 from capstone-five-ai/develop
Browse files Browse the repository at this point in the history
v0.1.1
  • Loading branch information
AAminha authored Jun 3, 2024
2 parents 402f00c + 3fa7ad4 commit 6538028
Show file tree
Hide file tree
Showing 302 changed files with 10,617 additions and 8,192 deletions.
41 changes: 37 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,46 @@
"sourceType": "module",
"project": ["./tsconfig.json"]
},
"plugins": ["@typescript-eslint", "react", "prettier", "react-hooks"],
"plugins": ["@typescript-eslint", "react", "prettier", "react-hooks", "import"],
"rules": {
"prettier/prettier": ["error", { "endOfLine": "auto" }],
"react/react-in-jsx-scope": "off",
"react/jsx-props-no-spreading": "off",
"react/prop-types": "off",
"import/no-extraneous-dependencies": ["off"],
"@typescript-eslint/no-use-before-define": 0
"@typescript-eslint/no-use-before-define": "off",
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": ["**/vite.config.ts"]
}
],
"import/order": [
"error",
{
"groups": ["builtin", "external", "internal", "parent", "sibling", "index"],
"pathGroups": [
{
"pattern": "react",
"group": "external",
"position": "before"
},
{
"pattern": "@/**",
"group": "internal",
"position": "after"
}
],
"pathGroupsExcludedImportTypes": ["react", "react-dom"],
"newlines-between": "always",
"alphabetize": { "order": "asc" }
}
]
},
"settings": {
"import/resolver": {
"typescript": {
"alwaysTryTypes": true,
"project": "./tsconfig.json"
}
}
}
}
5 changes: 3 additions & 2 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"printWidth": 120,
"printWidth": 80,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
"trailingComma": "es5",
"endOfLine": "auto"
}
11 changes: 8 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="./src/assets/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="./src/assets/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="./src/assets/favicon-96x96.png" sizes="96x96" />
<!--Open Graph-->
<meta property="og:type" content="website" />
<meta property="og:title" content="Qtudy" />
<meta property="og:url" content="https://www.qtudy.com" />
<meta property="og:image"
content="https://github.com/capstone-five-ai/Qtudy-FE/assets/87255791/6f1b9432-08ad-470a-818c-6625685b0d07" />
<link rel="icon" type="image/svg+xml" href="/src/assets/logo/favicon.svg" />
<link href="https://hangeul.pstatic.net/hangeul_static/css/nanum-square-neo.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Qtudy</title>
</head>
Expand Down
Loading

0 comments on commit 6538028

Please sign in to comment.