Skip to content

Commit 3eff5e9

Browse files
Merge pull request #27 from ThomasJButler/development
Development
2 parents 05cdab8 + 878a2ec commit 3eff5e9

File tree

178 files changed

+43993
-11092
lines changed

Some content is hidden

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

178 files changed

+43993
-11092
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.eslintrc.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"parser": "@typescript-eslint/parser",
3+
"parserOptions": {
4+
"ecmaVersion": 2020,
5+
"sourceType": "module",
6+
"ecmaFeatures": {
7+
"jsx": true
8+
}
9+
},
10+
"extends": [
11+
"eslint:recommended",
12+
"plugin:@typescript-eslint/recommended"
13+
],
14+
"plugins": ["@typescript-eslint"],
15+
"env": {
16+
"browser": true,
17+
"es2020": true,
18+
"node": true
19+
},
20+
"rules": {
21+
"@typescript-eslint/no-explicit-any": "warn",
22+
"@typescript-eslint/explicit-module-boundary-types": "off",
23+
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
24+
"no-console": ["warn", { "allow": ["warn", "error"] }]
25+
}
26+
}

.gitignore

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,41 @@
11

2-
skills.html
2+
# Dependencies
33
/node_modules
4+
5+
# Build output
6+
/dist
7+
8+
# Environment files
9+
.env
10+
.env.local
11+
.env.*.local
12+
13+
# Editor directories and files
14+
.idea
15+
.vscode
16+
*.suo
17+
*.ntvs*
18+
*.njsproj
19+
*.sln
20+
*.sw?
21+
22+
# OS files
23+
.DS_Store
24+
Thumbs.db
25+
26+
# Project specific
427
/tommyprompts website
528
/add to website
629
CLAUDE.md
7-
Website Video mp4 Banners /todo.txt
8-
Website Video mp4 Banners /large green banner.mp4
930
/Website Video mp4 Banners
10-
Website Video mp4 Banners /.DS_Store
31+
32+
# Temporary files
33+
*.log
34+
*.tmp
35+
*.temp
36+
improvements.md
37+
animejssetup.md
38+
projectcheck.md
39+
v3.0-content-update-plan.md
40+
plan.md
41+
/.claude

.prettierrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"semi": true,
3+
"trailingComma": "es5",
4+
"singleQuote": true,
5+
"printWidth": 100,
6+
"tabWidth": 2,
7+
"useTabs": false,
8+
"bracketSpacing": true,
9+
"arrowParens": "always",
10+
"endOfLine": "lf"
11+
}

README.md

Lines changed: 291 additions & 38 deletions
Large diffs are not rendered by default.

README.md 15-43-35-961.md

Lines changed: 0 additions & 43 deletions
This file was deleted.

0 commit comments

Comments
 (0)