Skip to content

Commit 9a2bfda

Browse files
Adding back .gitignore and .vscode/settings.json
Reformatting tests/test_screening_subject_search_page.py
1 parent f79bc1e commit 9a2bfda

File tree

3 files changed

+178
-34
lines changed

3 files changed

+178
-34
lines changed

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# WARNING: Please, DO NOT edit this section of the file! It is maintained in the repository template.
2+
3+
.scannerwork
4+
*cloc*report*.json
5+
*sbom*report*.json
6+
*vulnerabilities*report*.json
7+
*report*json.zip
8+
.version
9+
10+
*.code-workspace
11+
!project.code-workspace
12+
13+
# Please, add your custom content below!
14+
15+
__pycache__/
16+
.pytest_cache/
17+
test-results/
18+
axe-reports/
19+
.env
20+
.venv/

.vscode/settings.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"markdownlint.config": {
3+
"MD013": false,
4+
"MD024": { "siblings_only": true },
5+
"MD033": false
6+
},
7+
"cSpell.words": [
8+
"addopts",
9+
"codegen",
10+
"customisable",
11+
"customised",
12+
"initialise",
13+
"Licence",
14+
"organisation",
15+
"pytest",
16+
"pytestmark",
17+
"pythonpath",
18+
"recognise",
19+
"retcode",
20+
"ruleset",
21+
"utilise",
22+
"utilised",
23+
"Utilising"
24+
],
25+
"python.testing.pytestArgs": [
26+
"."
27+
],
28+
"python.testing.unittestEnabled": false,
29+
"python.testing.pytestEnabled": true
30+
}

0 commit comments

Comments
 (0)