Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,13 @@ module.exports = {
rules: {
'react-refresh/only-export-components': ['off', { allowConstantExport: true }],
'react/prop-types': ['off'],
'react/react-in-jsx-scope': 'off', // Not needed with new JSX transform
'no-unused-vars': [
'error',
{
varsIgnorePattern: '^React$|^_',
argsIgnorePattern: '^_',
},
], // Ignore React and variables starting with underscore
},
};
38 changes: 6 additions & 32 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,9 @@
# Project Kerbero
# React + Vite

Analytics and Consulting club website of NIT Rourkela
Official website for [Analytics and Consulting Club, NIT Rourkela](https://www.instagram.com/anc.nitr/)
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.

# About The Project
Currently, two official plugins are available:

Following technologies and libraries are used for the development of this project.

- [React](https://reactjs.org/)

- [Styled Component](https://styled-components.com/docs)

- [Vite](https://vitejs.dev/guide/why.html)

## Local Repository Setup

Please refer to the project's style for submitting patches and additions. In general, we follow the "fork-and-pull" Git workflow.

1. **Fork** the repo on GitHub

2. **Clone** the project to your local system

3. **Commit** changes to your own separate branch

4. **Push** your work back up to your fork

5. Submit a **Pull request** so that we can review your changes

## Running the project.

##install dependencies
npm install

##Run the project.
npm run dev
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
Loading