-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update 2.0: refactor, modified functions and optimization requests (#2)
* feat: full refactor and add features * feat: continue refactor * feat: correct swipe logic * feat: modified init logic * feat: add check platform before init * fix: installing inited flag * fix: modified fade animation using framer-motion * feat: modified skeletons * fix: change day skeleton * feat: add color for today tab * feat: change lessons counter * chore: update version
- Loading branch information
Showing
190 changed files
with
11,353 additions
and
43,972 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 |
---|---|---|
@@ -1,15 +1,46 @@ | ||
{ | ||
"root": true, | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaVersion": 2020, | ||
"sourceType": "module", | ||
"ecmaFeatures": { | ||
"jsx": true | ||
} | ||
}, | ||
"settings": { | ||
"react": { | ||
"version": "detect" | ||
}, | ||
"import/resolver": { | ||
"node": { | ||
"paths": ["src"], | ||
"extensions": [".js", ".jsx", ".ts", ".tsx"] | ||
} | ||
} | ||
}, | ||
"env": { | ||
"browser": true, | ||
"amd": true, | ||
"node": true | ||
}, | ||
"extends": [ | ||
"react-app", | ||
"prettier" | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:react/recommended", | ||
"plugin:jsx-a11y/recommended", | ||
"plugin:prettier/recommended", // Make sure this is always the last element in the array. | ||
"plugin:react-hooks/recommended" | ||
], | ||
"plugins": ["simple-import-sort", "prettier"], | ||
"rules": { | ||
"jsx-quotes": [ | ||
1, | ||
"prefer-double" | ||
] | ||
}, | ||
"plugins": [ | ||
"prettier" | ||
] | ||
} | ||
"prettier/prettier": ["error", {}, { "usePrettierrc": true, "endOfLine": "auto" }], | ||
"react/react-in-jsx-scope": "off", | ||
"jsx-a11y/accessible-emoji": "off", | ||
"react/prop-types": "off", | ||
"@typescript-eslint/explicit-function-return-type": "off", | ||
"simple-import-sort/imports": "error", | ||
"simple-import-sort/exports": "error", | ||
"@typescript-eslint/no-empty-function": "off" | ||
} | ||
} |
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
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
{ | ||
"useTabs": false, | ||
"printWidth": 100, | ||
"tabWidth": 2, | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"jsxBracketSameLine": false, | ||
"semi": false | ||
|
||
} | ||
"useTabs": false, | ||
"printWidth": 100, | ||
"tabWidth": 2, | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"jsxBracketSameLine": false, | ||
"semi": false | ||
} |
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 |
---|---|---|
|
@@ -14,7 +14,6 @@ | |
|
||
Выполните команду `npm install`(или `yarn`) | ||
|
||
|
||
## Стэк | ||
|
||
> - React | ||
|
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,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" /> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" /> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" /> | ||
<link rel="shortcut icon" href="/favicon.ico" /> | ||
|
||
<link rel="manifest" href="/site.webmanifest" /> | ||
<meta name="msapplication-TileColor" content="#da532c" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=no, viewport-fit=cover" | ||
/> | ||
<meta content="IE=Edge" http-equiv="X-UA-Compatible" /> | ||
<title>ДГТУ - Расписание</title> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.