-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Completed Work: - Created basic setup of project - Configured pre-commit hooks with 'husky' library - Configured stylelint - Configured apiClent with 'axios' library - Configured 'redux' store with '@reduxjs/toolkit' library - Configured 'react-router-dom' v6 - Configured app localization with 'i18n' library - Configured sass variables and mixins
- Loading branch information
Nikita Kolva
committed
Nov 21, 2022
1 parent
67eef03
commit e1948be
Showing
44 changed files
with
5,678 additions
and
166 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 @@ | ||
BASE_API_URL=https://fake123api.com |
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,42 @@ | ||
{ | ||
"extends": [ | ||
"eslint:recommended", | ||
"plugin:react/recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"google", | ||
"prettier" | ||
], | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaVersion": 2018, | ||
"sourceType": "module", | ||
"ecmaFeatures": { | ||
"jsx": true | ||
} | ||
}, | ||
"settings": { | ||
"react": { | ||
"version": "18.2.0" | ||
} | ||
}, | ||
"globals": { | ||
"google": true, | ||
"document": true, | ||
"window": true | ||
}, | ||
"rules": { | ||
"no-invalid-this": "off", | ||
"react/prop-types": "off", | ||
"require-jsdoc": "off", | ||
"camelcase": "off" | ||
}, | ||
"env": { | ||
"mocha": true, | ||
"node": true, | ||
"browser": true, | ||
"es6": true, | ||
"jest": true, | ||
"jquery": true | ||
}, | ||
"plugins": ["@typescript-eslint", "prettier"] | ||
} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
18.12.1 |
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 @@ | ||
semi: true | ||
trailingComma: "all" | ||
singleQuote: true | ||
printWidth: 100 | ||
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
Oops, something went wrong.