generated from ministryofjustice/hmpps-template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HAAR-1250: remove graph ql demo and bring inline with typescript temp…
…late (#47)
- Loading branch information
1 parent
95132c2
commit eefdb0e
Showing
85 changed files
with
1,077 additions
and
1,251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
NODE_ENV=dev && node_modules/.bin/lint-staged && node_modules/.bin/tsc && npm test | ||
NODE_ENV=dev && node_modules/.bin/lint-staged && npm run typecheck && npm test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"trailingComma": "all", | ||
"singleQuote": true, | ||
"printWidth": 120, | ||
"semi": false, | ||
"arrowParens": "avoid" | ||
"arrowParens": "avoid", | ||
"overrides": [ | ||
{ | ||
"files": "*.njk", | ||
"options": { | ||
"parser": "jinja-template" | ||
} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
$govuk-global-styles: true; | ||
$path: "/assets/images/"; | ||
|
||
@import 'govuk/all-ie8'; | ||
|
||
@import './components/header-bar'; | ||
@import 'assets/scss/local'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
$govuk-global-styles: true; | ||
$path: "/assets/images/"; | ||
|
||
$moj-page-width: 1170px; | ||
$govuk-page-width: $moj-page-width; | ||
|
||
@import 'govuk/all'; | ||
@import 'moj/all'; | ||
|
||
@import './components/header-bar'; | ||
@import 'assets/scss/local'; |
Oops, something went wrong.