Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated @mui/system to 6.1.0 #2639

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
61d4122
Replace package vm2 with isolated-vm (#1532)
Community-Programmer Dec 22, 2023
46771db
chore(deps): bump follow-redirects from 1.15.3 to 1.15.4 (#1668)
dependabot[bot] Jan 11, 2024
2ae1594
chore(deps): bump vite from 3.2.7 to 3.2.8 (#1724)
dependabot[bot] Jan 20, 2024
4f0bd30
Update README.md
palisadoes Jan 21, 2024
fd83f2d
Update pull-request.yml
palisadoes Jan 29, 2024
8a0a2e4
Update INSTALLATION.md
Cioppolo14 Jan 31, 2024
ffdd784
Update pull-request-target.yml
Cioppolo14 Feb 7, 2024
1a73dda
chore(deps): bump nodemailer from 6.9.6 to 6.9.9 (#1808)
dependabot[bot] Feb 7, 2024
207f946
Update README.md
palisadoes Feb 12, 2024
6569071
chore(deps-dev): bump jose from 4.15.4 to 4.15.5 (#1963)
dependabot[bot] Mar 7, 2024
d966c91
chore(deps): bump follow-redirects from 1.15.4 to 1.15.6 (#2017)
dependabot[bot] Mar 17, 2024
0d4d424
chore(deps): bump black from 22.12.0 to 24.3.0 (#2035)
dependabot[bot] Mar 20, 2024
c180768
chore(deps): bump express from 4.18.2 to 4.19.2 (#2116)
dependabot[bot] Mar 28, 2024
251d5af
chore(deps): bump vite from 3.2.8 to 3.2.10 (#2152)
dependabot[bot] Apr 3, 2024
b753853
Pre-GSoC 2024 - Stable (#2266)
palisadoes Apr 27, 2024
b7d0759
Update README.md
palisadoes Apr 27, 2024
29836d4
Merge develop - 20240504 (#2282)
palisadoes May 4, 2024
c15614a
chore(deps): bump black from 22.12.0 to 24.3.0 (#2292)
dependabot[bot] May 8, 2024
e7dbca3
coderabbit yaml file (#2314)
pranshugupta54 May 23, 2024
fe940d9
Updating the main branch to the latest develop code (#2329)
palisadoes Jun 2, 2024
82451e5
Latest Develop 20240724 (#2418)
palisadoes Jul 27, 2024
ec9f50c
Update CONTRIBUTING.md
palisadoes Aug 11, 2024
4215ea5
Update README.md
palisadoes Aug 11, 2024
96d609b
Merge with Develop 20240924 (#2554)
palisadoes Sep 29, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
18 changes: 18 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
language: "en-US"
early_access: false
reviews:
profile: "chill"
request_changes_workflow: true
high_level_summary: true
poem: true
review_status: true
collapse_walkthrough: false
auto_review:
enabled: true
drafts: false
base_branches:
- develop
- main
chat:
auto_reply: true
9 changes: 9 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
node_modules
videos
images
data
.env
.git
.gitignore
.github
.dockerignore
36 changes: 34 additions & 2 deletions .env.sample
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@
# Possible values are: development, production, test
NODE_ENV=development

#This environment variable is used to provide the port on which the server will run
SERVER_PORT=


# This environment variable is used to provide a unique random secret key for
# for signing/verifying access tokens using JWT(jsonwebtokens).
# for signing/verifying access tokens using JWT(jsonwebtokens)

ACCESS_TOKEN_SECRET=

Expand Down Expand Up @@ -49,6 +53,12 @@ SMTP_USERNAME=
SMTP_PORT=
SMTP_SSL_TLS=

# Enable or disable the storage of logs
LOG=false


# Path of file that will store logs
LOG_PATH=./logs/transaction.log

# Email for the first user who will be super admin
# The user with the email address set with this parameter will automatically be elevated to Super Admin status on registration.
Expand All @@ -72,4 +82,26 @@ LOG_LEVEL = info

REDIS_HOST=
REDIS_PORT=
REDIS_PASSWORD=
REDIS_PASSWORD=

# These environment variables are used to provide MinIo credentials

# The endpoint URL for MinIO server, specifying where the MinIO service is hosted
MINIO_ENDPOINT=

# The username with root-level access for MinIO administration
MINIO_ROOT_USER=

# The password corresponding to the MINIO_ROOT_USER for authentication
MINIO_ROOT_PASSWORD=

# The default bucket name to use with MinIO for storing data
MINIO_BUCKET=

# The local directory where MinIO stores its data files
MINIO_DATA_DIR=


# this environment variable is for setting the environment variable for Image Upload size

IMAGE_SIZE_LIMIT_KB=3000
145 changes: 72 additions & 73 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,77 @@
"prettier"
],
"overrides": [
{
"files": ["*.ts"], // Specify that the following rules apply only to TypeScript files
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"tsconfigRootDir": ".",
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
// Typescript additional rules
"@typescript-eslint/array-type": "error",
"@typescript-eslint/consistent-type-assertions": "error",
"@typescript-eslint/consistent-type-imports": "error",
"@typescript-eslint/explicit-function-return-type": "error",
// Interfaces must begin with Interface or TestInterface followed by a PascalCase name
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "interface",
"format": ["PascalCase"],
"prefix": ["Interface", "TestInterface"]
},
{
"selector": ["typeAlias", "typeLike", "enum"],
"format": ["PascalCase"]
},
{
"selector": "typeParameter",
"format": ["PascalCase"],
"prefix": ["T"]
},
{
"selector": "variable",
"format": ["camelCase", "UPPER_CASE"],
"leadingUnderscore": "allow"
},
{
"selector": "parameter",
"format": ["camelCase"],
"leadingUnderscore": "allow"
},
{
"selector": "function",
"format": ["camelCase"]
},
{
"selector": "memberLike",
"modifiers": ["private"],
"format": ["camelCase"],
"leadingUnderscore": "require"
},
{
"selector": "variable",
"modifiers": ["exported"],
"format": null
}
]
}
},
{
"files": ["./src/typeDefs/**/*.ts"],
"processor": "@graphql-eslint/graphql"
},
{
"files": ["./src/typeDefs/**/*.graphql"],
"parser": "@graphql-eslint/eslint-plugin",
"plugins": ["@graphql-eslint"],
// Do not apply naming conventions to .graphql files
"rules": {
"@typescript-eslint/naming-convention": "off"
}
"plugins": ["@graphql-eslint"]
},
{
"files": ["tests/**/*"],
"files": ["tests/**/*", "setup.ts"],
"rules": {
"no-restricted-imports": "off"
}
Expand All @@ -38,14 +94,7 @@
}
}
],

"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"tsconfigRootDir": ".",
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "eslint-plugin-tsdoc", "import"],
"root": true,
"rules": {
Expand All @@ -55,69 +104,19 @@
"patterns": ["**/src/**"]
}
],

// restrict the use of same package in multiple import statements
"import/no-duplicates": "warn",

"import/no-duplicates": "error",
// warn/1, error/2, off/0
"tsdoc/syntax": "warn",

"tsdoc/syntax": "error",
// Typescript Rules
"@typescript-eslint/ban-ts-comment": "warn",
"@typescript-eslint/ban-ts-comment": "error",
"@typescript-eslint/no-unsafe-function-type": "error",
"@typescript-eslint/no-wrapper-object-types": "error",
"@typescript-eslint/no-empty-object-type": "error",
"@typescript-eslint/no-duplicate-enum-values": "error",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-inferrable-types": "warn",
"@typescript-eslint/no-non-null-asserted-optional-chain": "warn",
"@typescript-eslint/no-non-null-assertion": "warn",
"@typescript-eslint/no-var-requires": "warn",
"@typescript-eslint/ban-types": "warn",
"@typescript-eslint/no-duplicate-enum-values": "warn",

// Typescript rule to enforce PascalCase naming convention for types and interfaces
"@typescript-eslint/naming-convention": [
"error",
// Interfaces must begin with Interface or TestInterface followed by a PascalCase name
{
"selector": "interface",
"format": ["PascalCase"],
"prefix": ["Interface", "TestInterface"]
},
// Type Aliases must be in PascalCase
{
"selector": ["typeAlias", "typeLike", "enum"],
"format": ["PascalCase"]
},
{
"selector": "typeParameter",
"format": ["PascalCase"],
"prefix": ["T"]
},
{
"selector": "variable",
"format": ["camelCase", "UPPER_CASE"],
"leadingUnderscore": "allow"
},
{
"selector": "parameter",
"format": ["camelCase"],
"leadingUnderscore": "allow"
},
{
"selector": "function",
"format": ["camelCase"]
},
{
"selector": "memberLike",
"modifiers": ["private"],
"format": ["camelCase"],
"leadingUnderscore": "require"
},
{ "selector": "variable", "modifiers": ["exported"], "format": null }
],

// Typescript additional rules
"@typescript-eslint/array-type": "warn",
"@typescript-eslint/consistent-type-assertions": "warn",
"@typescript-eslint/consistent-type-imports": "warn",
"@typescript-eslint/explicit-function-return-type": "warn"
"@typescript-eslint/no-non-null-asserted-optional-chain": "error",
"@typescript-eslint/no-non-null-assertion": "error",
"@typescript-eslint/no-var-requires": "error"
}
}
4 changes: 3 additions & 1 deletion .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ If applicable, add screenshots to help explain your problem.
Add any other context or screenshots about the feature request here.

**Potential internship candidates**
Please read this if you are planning to apply for a Palisadoes Foundation internship https://github.com/PalisadoesFoundation/talawa/issues/359

Please read this if you are planning to apply for a Palisadoes Foundation internship
- https://github.com/PalisadoesFoundation/talawa/issues/359
4 changes: 3 additions & 1 deletion .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@ A clear and concise description of approach to be followed.
Add any other context or screenshots about the feature request here.

**Potential internship candidates**
Please read this if you are planning to apply for a Palisadoes Foundation internship https://github.com/PalisadoesFoundation/talawa/issues/359

Please read this if you are planning to apply for a Palisadoes Foundation internship
- https://github.com/PalisadoesFoundation/talawa/issues/359
36 changes: 0 additions & 36 deletions .github/workflows/authorized-changes-detection.yml

This file was deleted.

Loading
Loading