Skip to content

Commit bfa1fd9

Browse files
harkiratsmSHITIZ-AGGARWALAbhishek-kumar09symaticvisualsdependabot[bot]
authored
Footer For Page ,Updated Drawer Layout And Loader for Profile (#78)
* Footer * New Drawer Layout and updated * latest Update * Loader for profile Page * Added designs * Add README * Latest Updates * Fix homepage Alignment Issues and page height * landing page v-1 (#59) * landing page v-1 * landing page v-1 * landing page v-1 * page v2 * v2 * Bump typescript from 3.9.9 to 4.3.2 Bumps [typescript](https://github.com/Microsoft/TypeScript) from 3.9.9 to 4.3.2. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v3.9.9...v4.3.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * landing page done * landing page done - generalized fonts * landing page done - production build * Create events (#79) * Initial commit * Complete eventForm with image upload * Store images into specific user * Make cancel btn working * Format file * Update * Added designs * Add README * Fix homepage responsiveness Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Abhishek Kumar <[email protected]> Co-authored-by: Dipesh Jaiswal <[email protected]> Co-authored-by: SHITIZ-AGGARWAL <[email protected]> Co-authored-by: SHITIZ AGGARWAL <[email protected]> * Bump react-helmet from 5.2.1 to 6.1.0 (#93) Bumps [react-helmet](https://github.com/nfl/react-helmet) from 5.2.1 to 6.1.0. - [Release notes](https://github.com/nfl/react-helmet/releases) - [Changelog](https://github.com/nfl/react-helmet/blob/master/CHANGELOG.md) - [Commits](https://github.com/nfl/react-helmet/commits/6.1.0) --- updated-dependencies: - dependency-name: react-helmet dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Display event (#84) * Display user's upcoming events * Display Individual event * Display new events * Added designs * Add README * landing page v-1 (#59) * landing page v-1 * landing page v-1 * landing page v-1 * page v2 * v2 * Bump typescript from 3.9.9 to 4.3.2 Bumps [typescript](https://github.com/Microsoft/TypeScript) from 3.9.9 to 4.3.2. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Commits](microsoft/TypeScript@v3.9.9...v4.3.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * landing page done * landing page done - generalized fonts * landing page done - production build * Create events (#79) * Initial commit * Complete eventForm with image upload * Store images into specific user * Make cancel btn working * Format file * Update * Added designs * Add README * Fix homepage responsiveness Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Abhishek Kumar <[email protected]> Co-authored-by: Dipesh Jaiswal <[email protected]> Co-authored-by: SHITIZ-AGGARWAL <[email protected]> Co-authored-by: SHITIZ AGGARWAL <[email protected]> * Hide bookmark and searchbar * Display number of events conducted * Remove warnings * Bump react-helmet from 5.2.1 to 6.1.0 (#93) Bumps [react-helmet](https://github.com/nfl/react-helmet) from 5.2.1 to 6.1.0. - [Release notes](https://github.com/nfl/react-helmet/releases) - [Changelog](https://github.com/nfl/react-helmet/blob/master/CHANGELOG.md) - [Commits](https://github.com/nfl/react-helmet/commits/6.1.0) --- updated-dependencies: - dependency-name: react-helmet dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix card styling * fix linting errors and package fixes * Fix New Event checkout btn * Fix user and eventID null problem * Fix * formatting * Add parentheses * Remove log statements and other things * Remove spaces Co-authored-by: SHITIZ-AGGARWAL <[email protected]> Co-authored-by: SHITIZ AGGARWAL <[email protected]> Co-authored-by: Abhishek Kumar <[email protected]> Co-authored-by: Deepanshu Goel <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * added bg on click Co-authored-by: SHITIZ-AGGARWAL <[email protected]> Co-authored-by: SHITIZ AGGARWAL <[email protected]> Co-authored-by: Abhishek Kumar <[email protected]> Co-authored-by: Deepanshu Goel <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dipesh Jaiswal <[email protected]>
1 parent 3d6d624 commit bfa1fd9

File tree

14 files changed

+508
-382
lines changed

14 files changed

+508
-382
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
./src/*

.eslintrc

Lines changed: 29 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,39 @@
11
{
2-
"parser": "babel-eslint",
32
"env": {
4-
"es6": true,
5-
"browser": true
3+
"browser": true,
4+
"es2021": true
65
},
76
"extends": [
87
"eslint:recommended",
9-
"plugin:mdx/recommended",
10-
"airbnb",
11-
"airbnb/hooks"
8+
"plugin:react/recommended",
9+
"plugin:prettier/recommended"
1210
],
13-
"settings": {
14-
"import/resolver": {
15-
"node": {
16-
"paths": [
17-
"src"
18-
],
19-
"extensions": [
20-
".js",
21-
".jsx",
22-
".ts",
23-
".tsx",
24-
".mdx"
25-
]
26-
}
27-
}
11+
"parserOptions": {
12+
"ecmaFeatures": {
13+
"jsx": true
14+
},
15+
"ecmaVersion": 12,
16+
"sourceType": "module"
2817
},
18+
"plugins": ["react"],
2919
"rules": {
30-
"comma-dangle": "off",
31-
"no-plusplus": "off",
32-
"import/no-unresolved": "off",
33-
"react-hooks/exhaustive-deps": "off",
34-
"react/jsx-filename-extension": "off",
35-
"react/jsx-props-no-spreading": "off",
36-
"react/require-default-props": "off",
37-
"react/forbid-prop-types": "off",
38-
"jsx-a11y/click-events-have-key-events": "off",
39-
"jsx-a11y/no-static-element-interactions": "off",
40-
"jsx-a11y/control-has-associated-label": "off",
41-
"jsx-a11y/anchor-is-valid": "off",
42-
"react/prop-types": "off",
43-
"react/no-array-index-key": "off",
44-
"react/destructuring-assignment": "warn",
45-
"no-use-before-define": "warn",
46-
"no-unused-vars": "warn",
47-
"react/jsx-indent": "warn",
48-
"jsx-a11y/no-noninteractive-element-interactions": "warn"
20+
"prettier/prettier": [
21+
"warn",
22+
{
23+
"endOfLine": "auto"
24+
},
25+
{
26+
"usePrettierrc": true
27+
}
28+
],
29+
"react/jsx-key": "warn",
30+
"react/display-name": "warn",
31+
"react/prop-types": 0,
32+
"react/react-in-jsx-scope": 0
33+
},
34+
"settings": {
35+
"react": {
36+
"version": "detect"
37+
}
4938
}
5039
}

0 commit comments

Comments
 (0)