Skip to content

Commit 77de99a

Browse files
committed
Updates
0 parents  commit 77de99a

File tree

158 files changed

+19606
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

158 files changed

+19606
-0
lines changed

.env.example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Google Analytics Configuration
2+
# Get your Tracking ID from Google Analytics (GA4)
3+
# Format: G-XXXXXXXXXX
4+
VITE_GA_TRACKING_ID=G-XXXXXXXXXX

.eslintrc.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"extends": [
3+
"standard",
4+
"standard-with-typescript"
5+
],
6+
"parser": "@typescript-eslint/parser",
7+
"parserOptions": {
8+
"ecmaVersion": 2020,
9+
"sourceType": "module",
10+
"project": "./tsconfig.json"
11+
},
12+
"plugins": [
13+
"react",
14+
"react-hooks"
15+
],
16+
"rules": {
17+
"react/react-in-jsx-scope": "off",
18+
"react/prop-types": "off",
19+
"@typescript-eslint/explicit-function-return-type": "off",
20+
"@typescript-eslint/strict-boolean-expressions": "off"
21+
},
22+
"env": {
23+
"browser": true,
24+
"es2020": true,
25+
"node": true
26+
}
27+
}
28+

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
* text=auto eol=lf
2+
3+
*.cmd text eol=crlf
4+
*.bat text eol=crlf

.github/agents.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Copilot Instructions for AI Agents
2+
3+
- Follow all workspace-specific rules and best practices.
4+
- Adhere to the guidelines in `.github/code guidelines.md`.
5+
- When generating code, prefer existing workspace patterns and utilities.
6+
- Reference workspace symbols and files using fully qualified links.
7+
- Do not generate or suggest code that violates repository policies.
8+
- Always check for and respect any additional instructions in the workspace.

.github/code.guidelines.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Copilot Code Guidelines for Developers
2+
3+
- Write clear, maintainable, and well-documented code.
4+
- Follow the formatting and linting rules defined in `.eslintrc.json`, `.prettierrc.json`, and `.standardrc.json`.
5+
- Use TypeScript best practices for type safety.
6+
- Prefer functional components and hooks in React code.
7+
- Organize code into appropriate domains and shared modules.
8+
- Write unit tests for new features and bug fixes.
9+
- Reference workspace symbols and files using fully qualified links.
10+
- Avoid introducing breaking changes without discussion.

0 commit comments

Comments
 (0)