Skip to content

Commit

Permalink
Merge pull request #15 from Grandi0z/features/rebuildb
Browse files Browse the repository at this point in the history
Features/rebuildb
  • Loading branch information
Grandi0z authored Jan 11, 2024
2 parents cbcdcce + eeb9fbc commit a032d9d
Show file tree
Hide file tree
Showing 82 changed files with 18,206 additions and 16,651 deletions.
6 changes: 6 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"presets": [
"@babel/preset-react"
],
"plugins": ["@babel/plugin-syntax-jsx"]
}
36 changes: 29 additions & 7 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,35 @@
{
"env": {
"browser": true,
"es2021": true
"browser": true,
"es6": true,
"jest": true
},
"extends": "standard",
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"extends": ["airbnb", "plugin:react/recommended", "plugin:react-hooks/recommended"],
"plugins": ["react"],
"rules": {
}
}
"react/jsx-filename-extension": ["warn", { "extensions": [".js", ".jsx"] }],
"react/react-in-jsx-scope": "off",
"import/no-unresolved": "off",
"no-shadow": "off"
},
"overrides": [
{
// feel free to replace with your preferred file pattern - eg. 'src/**/*Slice.js' or 'redux/**/*Slice.js'
"files": ["src/**/*Slice.js"],
// avoid state param assignment
"rules": { "no-param-reassign": ["error", { "props": false }] }
}
],
"ignorePatterns": [
"dist/",
"build/"
]
}
24 changes: 23 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
node_modules
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
18 changes: 0 additions & 18 deletions .hinttrc

This file was deleted.

26 changes: 12 additions & 14 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,19 @@
"extends": ["stylelint-config-standard"],
"plugins": ["stylelint-scss", "stylelint-csstree-validator"],
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": [
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind",
"apply",
"variants",
"responsive",
"screen"
]
"ignoreAtRules": ["tailwind", "apply", "variants", "responsive", "screen"]
}
]
],
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["tailwind", "apply", "variants", "responsive", "screen"]
}
],
"csstree/validator": true
},
"csstree/validator": true,
"ignoreFiles": ["build/**", "dist/**", "**/reset*.css", "**/bootstrap*.css"]
}

"ignoreFiles": ["build/**", "dist/**", "**/reset*.css", "**/bootstrap*.css", "**/*.js", "**/*.jsx"]
}
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

39 changes: 20 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,26 @@

# 📗 Table of Contents

- [📖 About the Project](#about-project)
- [🛠 Built With](#built-with)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [🚀 Live Demo](#live-demo)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#triangular_flag_on_post-deployment)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [❓ FAQ](#faq)
- [📝 License](#license)
- [� Table of Contents](#-table-of-contents)
- [📖 \[JOSEPH'S PORTFOLIO\] ](#-josephs-portfolio-)
- [🛠 Built With ](#-built-with-)
- [Tech Stack ](#tech-stack-)
- [Key Features ](#key-features-)
- [🚀 Live Demo ](#-live-demo-)
- [💻 Getting Started ](#-getting-started-)
- [Prerequisites](#prerequisites)
- [Setup](#setup)
- [Install](#install)
- [Usage](#usage)
- [Run tests](#run-tests)
- [Deployment](#deployment)
- [👥 Authors Joseph Lwanzo Kausi](#-authors-joseph-lwanzo-kausi)
- [🔭 Future Features ](#-future-features-)
- [🤝 Contributing ](#-contributing-)
- [⭐️ Show your support ](#️-show-your-support-)
- [🙏 Acknowledgments ](#-acknowledgments-)
- [❓ FAQ ](#-faq-)
- [📝 License ](#-license-)



Expand Down
Binary file removed image/Action.png
Binary file not shown.
47 changes: 0 additions & 47 deletions image/Desktop/Bottom Naviagation.svg

This file was deleted.

Binary file removed image/Desktop/[email protected]
Binary file not shown.
3 changes: 0 additions & 3 deletions image/Desktop/Rectangle 42.svg

This file was deleted.

Binary file removed image/Desktop/carre.png
Binary file not shown.
20 changes: 0 additions & 20 deletions image/Desktop/carre.svg

This file was deleted.

36 changes: 0 additions & 36 deletions image/Desktop/collone.svg

This file was deleted.

Binary file removed image/Desktop/illustration-about [email protected]
Binary file not shown.
Loading

0 comments on commit a032d9d

Please sign in to comment.