Skip to content

Commit c63df94

Browse files
committedApr 12, 2019
Initial commit
Add frontend app scaffolding
1 parent 8301ada commit c63df94

File tree

102 files changed

+20247
-1
lines changed

Some content is hidden

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

102 files changed

+20247
-1
lines changed
 

‎.editorconfig

+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# http://EditorConfig.org
2+
# https://gds-way.cloudapps.digital/manuals/programming-languages/editorconfig
3+
root = true
4+
5+
[*.java]
6+
indent_size = 4
7+
indent_style = space
8+
charset = utf-8
9+
end_of_line = lf
10+
insert_final_newline = true
11+
trim_trailing_whitespace = false
12+
continuation_indent_size = 8
13+
14+
[*.scss]
15+
indent_size = 2
16+
indent_style = space
17+
charset = utf-8
18+
end_of_line = lf
19+
insert_final_newline = true
20+
trim_trailing_whitespace = true
21+
22+
[*.erb]
23+
indent_size = 2
24+
indent_style = space
25+
charset = utf-8
26+
end_of_line = lf
27+
insert_final_newline = true
28+
trim_trailing_whitespace = true
29+
30+
[*.html]
31+
indent_size = 2
32+
indent_style = space
33+
charset = utf-8
34+
end_of_line = lf
35+
insert_final_newline = true
36+
trim_trailing_whitespace = true
37+
38+
[*.css]
39+
indent_size = 2
40+
indent_style = space
41+
charset = utf-8
42+
end_of_line = lf
43+
insert_final_newline = true
44+
trim_trailing_whitespace = true
45+
46+
[*.js]
47+
indent_size = 2
48+
indent_style = space
49+
charset = utf-8
50+
end_of_line = lf
51+
insert_final_newline = true
52+
trim_trailing_whitespace = true
53+
54+
[*.json]
55+
indent_size = 2
56+
indent_style = space
57+
charset = utf-8
58+
end_of_line = lf
59+
insert_final_newline = true
60+
trim_trailing_whitespace = true
61+
62+
[*.py]
63+
indent_size = 4
64+
indent_style = space
65+
charset = utf-8
66+
end_of_line = lf
67+
insert_final_newline = true
68+
trim_trailing_whitespace = true
69+
max_line_length = 119
70+
71+
[*.rb]
72+
indent_size = 2
73+
indent_style = space
74+
charset = utf-8
75+
end_of_line = lf
76+
insert_final_newline = true
77+
trim_trailing_whitespace = true
78+
79+
[*.sh]
80+
indent_size = 2
81+
indent_style = space
82+
charset = utf-8
83+
end_of_line = lf
84+
insert_final_newline = true
85+
trim_trailing_whitespace = true
86+
87+
[*.yml]
88+
indent_size = 2
89+
indent_style = space
90+
charset = utf-8
91+
end_of_line = lf
92+
insert_final_newline = true
93+
trim_trailing_whitespace = true
94+
95+
[Makefile]
96+
indent_size = 2
97+
indent_style = tab
98+
charset = utf-8
99+
end_of_line = lf
100+
insert_final_newline = true
101+
trim_trailing_whitespace = true
102+
103+
[**vendor**]
104+
indent_size =
105+
indent_style =
106+
charset =
107+
end_of_line =
108+
insert_final_newline =
109+
trim_trailing_whitespace =
110+
max_line_length =

‎.github/ISSUE_TEMPLATE/BUG_REPORT.md

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
---
2+
name: Bug report
3+
about: Report a bug to help us improve the project
4+
5+
---
6+
7+
<!--
8+
9+
Have you read the Code of Conduct? By filing an Issue, you are expected to comply with it, including treating everyone with respect:
10+
11+
https://github.com/ministryofjustice/mojdt-frontend/blob/master/CODE_OF_CONDUCT.md
12+
13+
Do you want to ask a question? Are you looking for support? You can email [design-system@digital.justice.gov.uk](design-system@digital.justice.gov.uk) putting the repository name in the subject line.
14+
15+
-->
16+
17+
### Prerequisites
18+
19+
* [ ] Put an X between the brackets on this line if you have done all of the following:
20+
* Reproduced the problem
21+
* Followed all applicable steps in the debugging guide
22+
* Checked the FAQs on the message board for common solutions
23+
* Checked that your issue doesn't exist: https://github.com/ministryofjustice/mojdt-frontend/issues
24+
* Checked that there is not already a package that provides the described functionality
25+
26+
### Description
27+
28+
[Description of the issue]
29+
30+
### Steps to Reproduce
31+
32+
1. [First Step]
33+
2. [Second Step]
34+
3. [and so on...]
35+
36+
**Expected behaviour:** [What you expect to happen]
37+
38+
**Actual behaviour:** [What happens]
39+
40+
**Reproduces how often:** [What percentage of the time does it reproduce?]
41+
42+
### Versions
43+
44+
You can get this information from the CHANGELOG. Also, please include details of the browser and OS version you're running.
45+
46+
### Additional Information
47+
48+
Provide any additional information, configuration or data that might be necessary to reproduce the issue.

0 commit comments

Comments
 (0)
Please sign in to comment.