Skip to content

Commit ae97d1c

Browse files
Merge pull request #1 from foundersandcoders/fix_categories
Fix categories
2 parents 5d54a49 + cbe0bf1 commit ae97d1c

Some content is hidden

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

47 files changed

+2789
-1795
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default tseslint.config({
2222
tsconfigRootDir: import.meta.dirname,
2323
},
2424
},
25-
})
25+
});
2626
```
2727

2828
- Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
@@ -31,7 +31,7 @@ export default tseslint.config({
3131

3232
```js
3333
// eslint.config.js
34-
import react from 'eslint-plugin-react'
34+
import react from 'eslint-plugin-react';
3535

3636
export default tseslint.config({
3737
// Set the react version
@@ -46,5 +46,9 @@ export default tseslint.config({
4646
...react.configs.recommended.rules,
4747
...react.configs['jsx-runtime'].rules,
4848
},
49-
})
49+
});
5050
```
51+
52+
My notes:
53+
We have x2 components for subject picking and verb picking.
54+
The ones on the wizzard are the tiles style

allcode.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33

44
# Directories to exclude (won't be recursed into) - comparison done case-insensitively.
5-
EXCLUDE_DIRS = {"node_modules", ".git", ".github", "dist"}
5+
EXCLUDE_DIRS = {"node_modules", ".git", ".github", "dist", "public"}
66

77
# Files to exclude (by exact name, case-insensitive)
88
EXCLUDE_FILES = {
@@ -23,6 +23,7 @@
2323
"allcode.txt",
2424
".env.development",
2525
"vite-env.d.ts",
26+
".DS_Store",
2627
}
2728

2829

0 commit comments

Comments
 (0)