Skip to content
Draft
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
9 changes: 0 additions & 9 deletions web/.editorconfig

This file was deleted.

3 changes: 3 additions & 0 deletions web/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@ AUTH0_SCOPE=openid email profile offline_access
AUTH0_REALM=<YOUR_AUTH0_REALM>

API_ADDRESS=<COLLEGE_RESOURCES_API_ADDRESS>

# This will analyze the project's dependencies and create a visual representation at "<BASE_URL>/analyze"
#ANALYZE=true
9 changes: 2 additions & 7 deletions web/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,10 @@
"node": true
},
"plugins": ["@babel", "import", "react"],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"prettier"
],
"extends": ["eslint:recommended", "next", "next/core-web-vitals", "prettier"],
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 2020,
"ecmaVersion": 2021,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
Expand Down
5 changes: 3 additions & 2 deletions web/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"trailingComma": "none",
"trailingComma": "all",
"semi": false,
"singleQuote": true,
"tabWidth": 2
"tabWidth": 2,
"printWidth": 100
}
674 changes: 0 additions & 674 deletions web/LICENSE

This file was deleted.

155 changes: 0 additions & 155 deletions web/components/ThemeContext.jsx

This file was deleted.

File renamed without changes.
152 changes: 0 additions & 152 deletions web/components/courses/Semester.jsx

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import TextField from '@material-ui/core/TextField'

export default function CodeInput(props) {
export default function CourseCodeInput(props) {
const { onChange, value } = props

return (
Expand Down
Loading