Skip to content

Commit

Permalink
Merge pull request #44 from CS3219-AY2425S1/staging
Browse files Browse the repository at this point in the history
Merge staging into main
  • Loading branch information
pzl111 authored Sep 29, 2024
2 parents 6b9df6c + 5fc4428 commit beb63cf
Show file tree
Hide file tree
Showing 87 changed files with 6,493 additions and 112 deletions.
20 changes: 7 additions & 13 deletions .github/ISSUE_TEMPLATE/individual-feature.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
name: Individual Feature
about:
This template helps you to create individual features within a high-level requirement.
about: This template helps you to create individual features within a high-level requirement.
This is equivalent to a Feature within an Epic.
title: '[REQ ID] [FEAT ID]'
title: "[REQ ID] [FEAT ID]"
labels: chore.Feature
assignees: ''

---

# [Feature Name]
Expand All @@ -16,14 +16,8 @@ assignees: ''

Enter some information about the feature you are specifying.

## Functional Requirements

1. [Link to FR 1]()
2. [Link to FR 2]()
...

## Non-Functional Requirements
## Features

1. [Link to NFR 1]()
2. [Link to NFR 2]()
...
1. [Link to Feature 1]()
2. [Link to Feature 2]()
...
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules/
.env
6 changes: 6 additions & 0 deletions node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
3 changes: 3 additions & 0 deletions peer-prep/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ dist-ssr
*.njsproj
*.sln
*.sw?

.env
.env.local
3 changes: 3 additions & 0 deletions peer-prep/.vite/deps_temp_16910cd1/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"type": "module"
}
12 changes: 6 additions & 6 deletions peer-prep/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ export default tseslint.config({
languageOptions: {
// other options...
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.app.json'],
project: ["./tsconfig.node.json", "./tsconfig.app.json"],
tsconfigRootDir: import.meta.dirname,
},
},
})
});
```

- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
Expand All @@ -31,11 +31,11 @@ export default tseslint.config({

```js
// eslint.config.js
import react from 'eslint-plugin-react'
import react from "eslint-plugin-react";

export default tseslint.config({
// Set the react version
settings: { react: { version: '18.3' } },
settings: { react: { version: "18.3" } },
plugins: {
// Add the react plugin
react,
Expand All @@ -44,7 +44,7 @@ export default tseslint.config({
// other rules...
// Enable its recommended rules
...react.configs.recommended.rules,
...react.configs['jsx-runtime'].rules,
...react.configs["jsx-runtime"].rules,
},
})
});
```
2 changes: 1 addition & 1 deletion peer-prep/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!doctype html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
Loading

0 comments on commit beb63cf

Please sign in to comment.