Skip to content

Commit 860d083

Browse files
authoredSep 28, 2022
fmt: all (foundry-rs#3398)
* fmt: all * fmt: rest * fmt: missing
1 parent 39bb5b2 commit 860d083

Some content is hidden

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

51 files changed

+1454
-1468
lines changed
 

‎.cargo/config.toml

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
[target.x86_64-pc-windows-msvc]
22
rustflags = [
3-
# Increases the stack size to 10MB, which is
4-
# in line with Linux (whereas default for Windows is 1MB)
5-
"-C", "link-arg=/STACK:10000000"
3+
# Increases the stack size to 10MB, which is
4+
# in line with Linux (whereas default for Windows is 1MB)
5+
"-C",
6+
"link-arg=/STACK:10000000",
67
]
78

89
[target.i686-pc-windows-msvc]
910
rustflags = [
10-
# Increases the stack size to 10MB, which is
11-
# in line with Linux (whereas default for Windows is 1MB)
12-
"-C", "link-arg=/STACK:10000000"
11+
# Increases the stack size to 10MB, which is
12+
# in line with Linux (whereas default for Windows is 1MB)
13+
"-C",
14+
"link-arg=/STACK:10000000",
1315
]

‎.github/ISSUE_TEMPLATE/BUG-FORM.yml

+48-50
Original file line numberDiff line numberDiff line change
@@ -2,54 +2,52 @@ name: Bug report
22
description: File a bug report
33
labels: ["T-bug"]
44
body:
5-
- type: markdown
6-
attributes:
7-
value: |
8-
Please ensure that the bug has not already been filed in the issue tracker.
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Please ensure that the bug has not already been filed in the issue tracker.
99
10-
Thanks for taking the time to report this bug!
11-
- type: dropdown
12-
attributes:
13-
label: Component
14-
description: What component is the bug in?
15-
multiple: true
16-
options:
17-
- Forge
18-
- Cast
19-
- Anvil
20-
- Foundryup
21-
- Other (please describe)
22-
validations:
23-
required: true
24-
- type: checkboxes
25-
attributes:
26-
label: Have you ensured that all of these are up to date?
27-
options:
28-
- label: Foundry
29-
- label: Foundryup
30-
validations:
31-
required: true
32-
- type: input
33-
attributes:
34-
label: What version of Foundry are you on?
35-
placeholder: "Run forge --version and paste the output here"
36-
- type: input
37-
attributes:
38-
label: What command(s) is the bug in?
39-
description: Leave empty if not relevant
40-
placeholder: "For example: forge test"
41-
- type: dropdown
42-
attributes:
43-
label: Operating System
44-
description: What operating system are you on?
45-
options:
46-
- Windows
47-
- macOS (Intel)
48-
- macOS (Apple Silicon)
49-
- Linux
50-
- type: textarea
51-
attributes:
52-
label: Describe the bug
53-
description: Please include relevant Solidity snippets as well if relevant.
54-
validations:
55-
required: true
10+
Thanks for taking the time to report this bug!
11+
- type: dropdown
12+
attributes:
13+
label: Component
14+
description: What component is the bug in?
15+
multiple: true
16+
options:
17+
- Forge
18+
- Cast
19+
- Anvil
20+
- Foundryup
21+
- Other (please describe)
22+
validations:
23+
required: true
24+
- type: checkboxes
25+
attributes:
26+
label: Have you ensured that all of these are up to date?
27+
options:
28+
- label: Foundry
29+
- label: Foundryup
30+
- type: input
31+
attributes:
32+
label: What version of Foundry are you on?
33+
placeholder: "Run forge --version and paste the output here"
34+
- type: input
35+
attributes:
36+
label: What command(s) is the bug in?
37+
description: Leave empty if not relevant
38+
placeholder: "For example: forge test"
39+
- type: dropdown
40+
attributes:
41+
label: Operating System
42+
description: What operating system are you on?
43+
options:
44+
- Windows
45+
- macOS (Intel)
46+
- macOS (Apple Silicon)
47+
- Linux
48+
- type: textarea
49+
attributes:
50+
label: Describe the bug
51+
description: Please include relevant Solidity snippets as well if relevant.
52+
validations:
53+
required: true

0 commit comments

Comments
 (0)