-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
1,128 additions
and
14,483 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,4 +129,5 @@ dist | |
.yarn/install-state.gz | ||
.pnp.* | ||
#build | ||
build/ | ||
build/ | ||
server/src/uploads |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"cSpell.words": [ | ||
"fieldname" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
{ | ||
"root": true, | ||
"env": { | ||
"browser": true, | ||
"es2021": true | ||
}, | ||
"plugins": [ | ||
"perfectionist", | ||
"unused-imports", | ||
"prettier" | ||
], | ||
"extends": [ | ||
"airbnb", | ||
"airbnb/hooks", | ||
"prettier" | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module", | ||
"ecmaFeatures": { | ||
"jsx": true | ||
} | ||
}, | ||
"settings": { | ||
"react": { | ||
"version": "detect" | ||
}, | ||
"import/resolver": { | ||
"alias": { | ||
"map": [ | ||
[ | ||
"src", | ||
"./src" | ||
] | ||
], | ||
"extensions": [ | ||
".js", | ||
".jsx", | ||
".json" | ||
] | ||
} | ||
} | ||
}, | ||
"rules": { | ||
"no-alert": 0, | ||
"camelcase": 0, | ||
"no-console": 0, | ||
"no-param-reassign": 0, | ||
"naming-convention": 0, | ||
"default-param-last": 0, | ||
"no-underscore-dangle": 0, | ||
"no-use-before-define": 0, | ||
"no-restricted-exports": 0, | ||
"react/no-children-prop": 0, | ||
"react/forbid-prop-types": 0, | ||
"react/react-in-jsx-scope": 0, | ||
"jsx-a11y/anchor-is-valid": 0, | ||
"react/no-array-index-key": 0, | ||
"no-promise-executor-return": 0, | ||
"react/require-default-props": 0, | ||
"react/jsx-filename-extension": 0, | ||
"react/jsx-props-no-spreading": 0, | ||
"import/prefer-default-export": 0, | ||
"react/function-component-definition": 0, | ||
"jsx-a11y/control-has-associated-label": 0, | ||
"react/jsx-no-useless-fragment": [ | ||
1, | ||
{ | ||
"allowExpressions": true | ||
} | ||
], | ||
"prefer-destructuring": [ | ||
1, | ||
{ | ||
"object": true, | ||
"array": false | ||
} | ||
], | ||
"react/no-unstable-nested-components": [ | ||
1, | ||
{ | ||
"allowAsProps": true | ||
} | ||
], | ||
"no-unused-vars": [ | ||
1, | ||
{ | ||
"args": "none" | ||
} | ||
], | ||
"react/jsx-no-duplicate-props": [ | ||
1, | ||
{ | ||
"ignoreCase": false | ||
} | ||
], | ||
// unused-imports | ||
// https://www.npmjs.com/package/eslint-plugin-unused-imports | ||
"unused-imports/no-unused-imports": 1, | ||
"unused-imports/no-unused-vars": [ | ||
0, | ||
{ | ||
"vars": "all", | ||
"varsIgnorePattern": "^_", | ||
"args": "after-used", | ||
"argsIgnorePattern": "^_" | ||
} | ||
], | ||
// perfectionist | ||
// https://eslint-plugin-perfectionist.azat.io/ | ||
"perfectionist/sort-named-imports": [ | ||
1, | ||
{ | ||
"order": "asc", | ||
"type": "line-length" | ||
} | ||
], | ||
"perfectionist/sort-named-exports": [ | ||
1, | ||
{ | ||
"order": "asc", | ||
"type": "line-length" | ||
} | ||
], | ||
"perfectionist/sort-exports": [ | ||
1, | ||
{ | ||
"order": "asc", | ||
"type": "line-length" | ||
} | ||
], | ||
"perfectionist/sort-imports": [ | ||
1, | ||
{ | ||
"order": "asc", | ||
"type": "line-length", | ||
"newlines-between": "always", | ||
"groups": [ | ||
[ | ||
"builtin", | ||
"external" | ||
], | ||
"custom-mui", | ||
"custom-routes", | ||
"custom-hooks", | ||
"custom-utils", | ||
"internal", | ||
"custom-components", | ||
"custom-sections", | ||
"custom-types", | ||
[ | ||
"parent", | ||
"sibling", | ||
"index" | ||
], | ||
"object", | ||
"unknown" | ||
], | ||
"custom-groups": { | ||
"value": { | ||
"custom-mui": "@mui/**", | ||
"custom-routes": "src/routes/**", | ||
"custom-hooks": "src/hooks/**", | ||
"custom-utils": "src/utils/**", | ||
"custom-components": "src/components/**", | ||
"custom-sections": "src/sections/**", | ||
"custom-types": "src/types/**" | ||
} | ||
}, | ||
"internal-pattern": [ | ||
"src/**" | ||
] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
build/* | ||
dist/* | ||
public/* | ||
**/out/* | ||
**/.next/* | ||
**/node_modules/* | ||
|
||
package-lock.json | ||
yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"printWidth": 100, | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"tabWidth": 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
### v1.8.0 | ||
|
||
###### Wed 11, 2023 | ||
|
||
- Migrate to vite.js. | ||
- Upgrade and restructure the directory. | ||
- Upgrade some dependencies to the latest versions | ||
|
||
--- | ||
|
||
### v1.7.0 | ||
|
||
###### Feb 21, 2023 | ||
|
||
- Upgrade some dependencies to the latest versions | ||
|
||
--- | ||
|
||
### v1.6.0 | ||
|
||
###### Oct 17, 2022 | ||
|
||
- Upgrade and restructure the directory. | ||
- Upgrade some dependencies to the latest versions | ||
|
||
--- | ||
|
||
### v1.5.0 | ||
|
||
###### Jul 04, 2022 | ||
|
||
- Support react 18. | ||
- Upgrade some dependencies to the latest versions | ||
|
||
--- | ||
|
||
### v1.4.0 | ||
|
||
###### Apr 12, 2022 | ||
|
||
- Update `src/components`. | ||
- Update `src/sections`. | ||
- Update `src/pages`. | ||
- Update `src/layouts`. | ||
- Update `src/theme`. | ||
- Upgrade some dependencies to the latest versions | ||
|
||
--- | ||
|
||
### v1.3.0 | ||
|
||
###### Feb 21, 2022 | ||
|
||
- Support react-script v5.0.0 | ||
- Source code improvement | ||
- Upgrade some dependencies to the latest versions | ||
|
||
--- | ||
|
||
### v1.2.0 | ||
|
||
###### Sep 18, 2021 | ||
|
||
- Support MIU v5.0.0 official release | ||
- Upgrade some dependencies to the latest versions | ||
- Update `src/theme/typography.js` | ||
- Upgrade some dependencies to the latest versions | ||
|
||
--- | ||
|
||
### v1.1.0 | ||
|
||
###### Jul 23, 2021 | ||
|
||
- Support MUI v5.0.0-beta.1 | ||
- Upgrade some dependencies to the latest versions | ||
|
||
--- | ||
|
||
### v1.0.0 | ||
|
||
###### Jun 28, 2021 | ||
|
||
Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"compilerOptions": { | ||
"baseUrl": "." | ||
} | ||
} |
Oops, something went wrong.