Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Saumya40-codes authored Dec 27, 2024
2 parents 2322ad8 + 5222abc commit ce789e6
Show file tree
Hide file tree
Showing 40 changed files with 1,561 additions and 270 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ If applicable, add screenshots to help explain your problem.
---

**Additional Context**
Add any other context about the problem here.
Add any other context about the problem here.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ A clear and concise description about the feature you are proposing.
A clear and concise description of what you want to happen.

**Additional context**
Add any other context or screenshots about the feature request here.
Add any other context or screenshots about the feature request here.
23 changes: 23 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
## Related Issue
Solves/Resolves/Fixes #[Issue Number].

---

## Description
Provide a detailed explanation of the changes made in this Pull Request [PR].
- Describe the problem or feature being addressed in it.
- Highlight key modifications in the codebase.

---

## Checklist
Please ensure the following before submitting the PR:
- [ ] I have read the `CODE_OF_CONDUCT.md` file and followed it's guidlines.
- [ ] I have followed the design specified in the Figma file (if applicable).

<!-- You can check the box like this: [x] -->

---

## Additional Comments
Include any additional notes or comments for the reviewers. If applicable, mention dependencies, challenges faced, or potential improvements.
27 changes: 27 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Lint Check
on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"

- name: Install Dependencies
run: npm install

- name: Run ESLint
run: npm run lint
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20
13 changes: 12 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This guide will walk you through the steps to get the project up and running on

Before setting up the project, ensure you have the following installed on your system:

- [Node.js](https://nodejs.org/) (v18 or later)
- [Node.js](https://nodejs.org/) **(v18 or later) (preferred any version >= 20)**
- [npm](https://www.npmjs.com/) (comes bundled with Node.js i.e. you do not need to install this seperately)
- [Git](https://git-scm.com/downloads)

Expand Down Expand Up @@ -64,6 +64,17 @@ If you are looking forward to contributing, please create a new *branch* before
git checkout -b add-navbar
```

---

### Note:

Try to make sure you are working on latest codebase

- For this before working on any issue, you can headover to your forked repository and check for whether something like `update branch` is written there, make sure you update your branch with `Sync Fork` option (Make sure your branch is selected as `main` there)

---


You are all set now to make your changes. If there are any problem, feel free to contact us.

6. Add your changes
Expand Down
6 changes: 5 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ export default [
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
],
'no-unused-vars': [
'error',
{ "varsIgnorePattern": '^React$' }
],
},
},
]
14 changes: 11 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,17 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
<link rel="icon" type="image/png" href="/public/PClub.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>PClub Ahmedabad University</title>

<!-- Google Fonts Links -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">

<!-- Font Awesome Link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div id="root"></div>
Expand Down
Loading

0 comments on commit ce789e6

Please sign in to comment.