Skip to content

Commit d6a5f09

Browse files
committed
fix: formatting yaml files
1 parent 32a5089 commit d6a5f09

File tree

3 files changed

+71
-71
lines changed

3 files changed

+71
-71
lines changed

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Gitpod workspace configuration for go-safe-conversion
1+
# Gitpod workspace configuration for the local repository.
22
# This file creates a repeatable cloud development environment.
33
# It ensures dependencies are installed and the codebase is vetted
44
# and tested on workspace start.

.goreleaser.yml

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -5,73 +5,73 @@
55
version: 2
66

77
before:
8-
hooks:
9-
- make test
8+
hooks:
9+
- make test
1010
changelog:
11-
sort: asc
12-
filters:
13-
exclude:
14-
- '^.github:'
15-
- '^.vscode:'
16-
- '^test:'
11+
sort: asc
12+
filters:
13+
exclude:
14+
- '^.github:'
15+
- '^.vscode:'
16+
- '^test:'
1717

1818
# ---------------------------
1919
# Builder
2020
# ---------------------------
2121
builds:
22-
- env:
23-
- CGO_ENABLED=0
24-
goos:
25-
- linux
26-
- windows
27-
- darwin
28-
skip: true
22+
- env:
23+
- CGO_ENABLED=0
24+
goos:
25+
- linux
26+
- windows
27+
- darwin
28+
skip: true
2929

3030
# ---------------------------
3131
# Github Release
3232
# ---------------------------
3333
release:
34-
prerelease: "false"
35-
name_template: "Release v{{.Version}}"
34+
prerelease: "false"
35+
name_template: "Release v{{.Version}}"
3636

3737
# ---------------------------
3838
# Announce
3939
# ---------------------------
4040
announce:
4141

42-
# See more at: https://goreleaser.com/customization/announce/#slack
43-
slack:
44-
enabled: false
45-
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Changelog: https://github.com/bsv-blockchain/{{ .ProjectName }}/releases/tag/{{ .Tag }}'
46-
channel: '#test_slack'
47-
# username: ''
48-
# icon_emoji: ''
49-
# icon_url: ''
42+
# See more at: https://goreleaser.com/customization/announce/#slack
43+
slack:
44+
enabled: false
45+
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Changelog: https://github.com/bsv-blockchain/{{ .ProjectName }}/releases/tag/{{ .Tag }}'
46+
channel: '#test_slack'
47+
# username: ''
48+
# icon_emoji: ''
49+
# icon_url: ''
5050

51-
# See more at: https://goreleaser.com/customization/announce/#twitter
52-
twitter:
53-
enabled: false
54-
message_template: '{{ .ProjectName }} {{ .Tag }} is out!'
51+
# See more at: https://goreleaser.com/customization/announce/#twitter
52+
twitter:
53+
enabled: false
54+
message_template: '{{ .ProjectName }} {{ .Tag }} is out!'
5555

56-
# See more at: https://goreleaser.com/customization/announce/#discord
57-
discord:
58-
enabled: false
59-
message_template: '{{ .ProjectName }} {{ .Tag }} is out!'
60-
# Defaults to `GoReleaser`
61-
author: ''
62-
# Defaults to `3888754` - the grey-ish from goreleaser
63-
color: ''
64-
# Defaults to `https://goreleaser.com/static/avatar.png`
65-
icon_url: ''
56+
# See more at: https://goreleaser.com/customization/announce/#discord
57+
discord:
58+
enabled: false
59+
message_template: '{{ .ProjectName }} {{ .Tag }} is out!'
60+
# Defaults to `GoReleaser`
61+
author: ''
62+
# Defaults to `3888754` - the grey-ish from goreleaser
63+
color: ''
64+
# Defaults to `https://goreleaser.com/static/avatar.png`
65+
icon_url: ''
6666

67-
# See more at: https://goreleaser.com/customization/announce/#reddit
68-
reddit:
69-
enabled: false
70-
# Application ID for Reddit Application
71-
application_id: ""
72-
# Username for your Reddit account
73-
username: ""
74-
# Defaults to `{{ .GitURL }}/releases/tag/{{ .Tag }}`
75-
# url_template: 'https://github.com/bsv-blockchain/{{ .ProjectName }}/releases/tag/{{ .Tag }}'
76-
# Defaults to `{{ .ProjectName }} {{ .Tag }} is out!`
77-
title_template: '{{ .ProjectName }} {{ .Tag }} is out!'
67+
# See more at: https://goreleaser.com/customization/announce/#reddit
68+
reddit:
69+
enabled: false
70+
# Application ID for Reddit Application
71+
application_id: ""
72+
# Username for your Reddit account
73+
username: ""
74+
# Defaults to `{{ .GitURL }}/releases/tag/{{ .Tag }}`
75+
# url_template: 'https://github.com/bsv-blockchain/{{ .ProjectName }}/releases/tag/{{ .Tag }}'
76+
# Defaults to `{{ .ProjectName }} {{ .Tag }} is out!`
77+
title_template: '{{ .ProjectName }} {{ .Tag }} is out!'

codecov.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,42 @@
11
# Reference: https://docs.codecov.com/docs/codecovyml-reference
22
# ----------------------
33
codecov:
4-
require_ci_to_pass: true
4+
require_ci_to_pass: true
55

66
# Coverage configuration
77
# ----------------------
88
coverage:
9-
status:
10-
patch: false
11-
range: 70..90 # The First number represents red, and the second represents green
12-
# (default is 70..100)
13-
round: down # up, down, or nearest
14-
precision: 2 # Number of decimal places, between 0 and 5
9+
status:
10+
patch: false
11+
range: 70..90 # The First number represents red, and the second represents green
12+
# (default is 70..100)
13+
round: down # up, down, or nearest
14+
precision: 2 # Number of decimal places, between 0 and 5
1515

1616
# Ignoring Paths
1717
# --------------
1818
# which folders/files to ignore
1919
ignore:
20-
- ".github/**"
21-
- ".make/**"
22-
- ".vscode/**"
23-
- "examples/**"
20+
- ".github/**"
21+
- ".make/**"
22+
- ".vscode/**"
23+
- "examples/**"
2424

2525
# Parsers
2626
# --------------
2727
parsers:
28-
gcov:
29-
branch_detection:
30-
conditional: yes
31-
loop: yes
32-
method: no
33-
macro: no
28+
gcov:
29+
branch_detection:
30+
conditional: yes
31+
loop: yes
32+
method: no
33+
macro: no
3434

3535
# Pull request comments:
3636
# ----------------------
3737
# Diff is the Coverage Diff of the pull request.
3838
# Files are the files impacted by the pull request
3939
comment:
40-
layout: "reach,diff,flags,files,footer"
41-
behavior: default
42-
require_changes: false
40+
layout: "reach,diff,flags,files,footer"
41+
behavior: default
42+
require_changes: false

0 commit comments

Comments
 (0)