Skip to content

Commit c59ab63

Browse files
authored
Merge pull request #7 from ministryofjustice/feat/AS-002-release-please
feat(AS-002): added package.json
2 parents 0653f53 + c9ca060 commit c59ab63

File tree

4 files changed

+1197
-0
lines changed

4 files changed

+1197
-0
lines changed

.dockerignore

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# .dockerignore for DTFS2 monorepo
2+
3+
# Node
4+
node_modules
5+
dist
6+
.npm
7+
8+
# Docker
9+
Dockerfile
10+
docker-compose*.yml
11+
12+
# Typescript
13+
**/*.tsbuildinfo
14+
15+
# Environment
16+
.eslintignore
17+
.cspell.json
18+
commitlint.config.js
19+
renovate.json
20+
.dockerignore
21+
.editorconfig
22+
.prettierrc.json
23+
.eslintrc.json
24+
.eslintrc.js
25+
26+
# Git
27+
.git
28+
.gitattributes
29+
.github
30+
.gitignore
31+
.husky
32+
33+
# Editor
34+
.prettierignore
35+
.whitesource
36+
.vscode/*
37+
.DS_Store
38+
Library/
39+
Thumbs.db
40+
ehthumbs.db
41+
.idea/
42+
43+
# Documentation
44+
**/*.md
45+
**/docs/
46+
LICENSE
47+
.config
48+
49+
# Secrets
50+
**/.env*/*
51+
**/.env*
52+
secrets/**
53+
jwt_key
54+
55+
# Logs
56+
**/*.log*
57+
coverage
58+
59+
# Jest
60+
*.jest.*.config.*
61+
62+
# Cypress
63+
**/cypress/videos
64+
**/cypress/screenshots
65+
66+
# Test
67+
**/*.test*
68+
**/*test/
69+
**/*tests/
70+
**/test-helpers/
71+
jest-html-reporters-*.html
72+
test-results/
73+
__mock*__

cspell.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"ignorePaths": ["**/node_modules/**"],
3+
"language": "en",
4+
"noConfigSearch": true,
5+
"allowCompoundWords": true,
6+
"words": ["Abhi", "Markan"],
7+
"dictionaries": [
8+
"en-gb",
9+
"companies",
10+
"softwareTerms",
11+
"misc",
12+
"lorem-ipsum",
13+
"typescript",
14+
"node",
15+
"bash",
16+
"npm"
17+
],
18+
"languageSettings": [
19+
{
20+
"languageId": "commit-msg",
21+
"ignoreRegExpList": ["/^#.*/gm"]
22+
}
23+
],
24+
"version": "0.2"
25+
}

0 commit comments

Comments
 (0)