Skip to content

Commit 8c55f1f

Browse files
committed
Implemented the rest of the major components with basic functionality. Populated rest of class information.
1 parent 89c6d29 commit 8c55f1f

Some content is hidden

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

44 files changed

+2874
-505
lines changed

.eslintrc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ module.exports = {
2222
'plugin:import/errors',
2323
'plugin:jest/recommended',
2424
'plugin:react/recommended',
25+
'plugin:react-hooks/recommended',
2526
'plugin:prettier/recommended',
2627
'prettier',
2728
],
@@ -34,6 +35,8 @@ module.exports = {
3435
caughtErrorsIgnorePattern: '^_',
3536
},
3637
],
38+
'react-hooks/exhaustive-deps': ERROR,
39+
'react/no-unescaped-entities': OFF,
3740
'jest/valid-title': OFF,
3841
},
3942
settings: {
@@ -42,5 +45,8 @@ module.exports = {
4245
extensions: ['.js', '.jsx', '.ts', '.tsx'],
4346
},
4447
},
48+
react: {
49+
version: 'detect',
50+
},
4551
},
4652
};

.vscode/launch.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"configurations": [
3+
{
4+
"type": "node",
5+
"name": "vscode-jest-tests.v2.cs361-project",
6+
"request": "launch",
7+
"args": [
8+
"jest",
9+
"--coverage",
10+
"--runInBand",
11+
"--watchAll=false",
12+
"--testNamePattern",
13+
"${jest.testNamePattern}",
14+
"--runTestsByPath",
15+
"${jest.testFile}"
16+
],
17+
"cwd": "${workspaceFolder}",
18+
"console": "integratedTerminal",
19+
"internalConsoleOptions": "neverOpen",
20+
"disableOptimisticBPs": true,
21+
"program": "${workspaceFolder}/node_modules/.bin/jest"
22+
}
23+
]
24+
}

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"jest.jestCommandLine": "npx jest --coverage"
2+
"jest.jestCommandLine": "npm run test --"
33
}

0 commit comments

Comments
 (0)