Skip to content

Commit cb286b1

Browse files
committed
update starter code for 2024
1 parent e98f830 commit cb286b1

File tree

8 files changed

+983
-777
lines changed

8 files changed

+983
-777
lines changed

Diff for: .eslintignore

-1
This file was deleted.

Diff for: .husky/pre-commit

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npm test

Diff for: .vscode/extensions.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
{
2-
"recommendations": ["esbenp.prettier-vscode"],
2+
"recommendations": [
3+
"esbenp.prettier-vscode",
4+
"dbaeumer.vscode-eslint",
5+
"github.copilot"
6+
],
37
"unwantedRecommendations": []
48
}

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is the starter code project for the `Demo 1` project in CMPM 121, Game Design Patterns, at UC Santa Cruz (fall quarter, 2024). Students should incrementally modify this project, tracking their progress wit git, to develop an incremental game of their own unique design.

Diff for: eslint.config.mjs

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import eslint from "@eslint/js";
2+
import tseslint from "typescript-eslint";
3+
4+
export default tseslint.config(
5+
eslint.configs.recommended,
6+
...tseslint.configs.recommended,
7+
{ ignores: ["dist/"] },
8+
);

0 commit comments

Comments
 (0)