-
Notifications
You must be signed in to change notification settings - Fork 1
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
1,041 changed files
with
64,124 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
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,22 @@ | ||
// .eslintignore | ||
build/* | ||
dist/* | ||
public/* | ||
**/out/* | ||
**/node_modules/* | ||
|
||
**/.next/* | ||
next.config.js | ||
|
||
vite.config.js | ||
vite.config.ts | ||
|
||
src/reportWebVitals.js | ||
src/service-worker.js | ||
src/serviceWorkerRegistration.js | ||
src/setupTests.js | ||
|
||
src/reportWebVitals.ts | ||
src/service-worker.ts | ||
src/serviceWorkerRegistration.ts | ||
src/setupTests.ts |
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,36 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
node_modules | ||
.pnp | ||
.pnp.js | ||
|
||
# testing | ||
coverage | ||
|
||
# production | ||
.next | ||
.swc | ||
_static | ||
out | ||
dist | ||
build | ||
|
||
# environment variables | ||
.env | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# misc | ||
.DS_Store | ||
.vercel | ||
.netlify | ||
.unimportedrc.json | ||
tsconfig.tsbuildinfo | ||
.vscode | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
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,13 @@ | ||
## NODE.JS | ||
|
||
- Node 16.x || 18.x | ||
|
||
## USING YARN (Recommend) | ||
|
||
- yarn install | ||
- yarn start | ||
|
||
## USING NPM | ||
|
||
- npm i OR npm i --legacy-peer-deps | ||
- npm start |
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,45 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> | ||
<link rel="manifest" href="/manifest.json" /> | ||
|
||
<!-- Favicon --> | ||
<link rel="icon" href="/favicon/favicon.ico" /> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png" /> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png" /> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png" /> | ||
|
||
<!-- Google Font --> | ||
<link rel="preconnect" href="https://fonts.googleapis.com" /> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700;800;900&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&display=swap" | ||
rel="stylesheet" | ||
/> | ||
|
||
<title>Zone UI Kit</title> | ||
|
||
<meta | ||
name="description" | ||
content="The ZONE is built on top of MUI, a powerful library that provides flexible, customizable, and easy-to-use components." | ||
/> | ||
<meta name="keywords" content="react,material,kit,application,landing & corporate,template" /> | ||
<meta name="author" content="ZONE UI Kit" /> | ||
</head> | ||
|
||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
<div id="root"></div> | ||
<script> | ||
const global = globalThis; | ||
</script> | ||
<script type="module" src="/src/main.jsx"></script> | ||
</body> | ||
</html> |
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.