Skip to content

Commit 61a3e36

Browse files
chore: fix file-formatter hooks exclude regex
1 parent b3a5460 commit 61a3e36

Some content is hidden

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

63 files changed

+143
-168
lines changed

.env-template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ MONGODB_DATABASE=test
1414
MONGODB_USERNAME=root
1515
MONGODB_PASSWORD=mongodb
1616
MONGODB_HOSTNAME=db
17-
MONGODB_PORT=27017
17+
MONGODB_PORT=27017

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010

1111
# Ignore massive diffs each time you add/update yarn plugins
1212
/web/.yarn/releases/** binary
13-
/web/.yarn/plugins/** binary
13+
/web/.yarn/plugins/** binary

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ assignees: ''
1010

1111
#### Actual Behaviour
1212

13-
#### Steps to Reproduce
13+
#### Steps to Reproduce

.github/ISSUE_TEMPLATE/code-maintenance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ assignees: ''
1111

1212
#### Suggest Changes
1313

14-
#### Provide Examples
14+
#### Provide Examples

.github/ISSUE_TEMPLATE/feature-request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ assignees: ''
1010

1111
#### Suggest Solution
1212

13-
#### Additional Details
13+
#### Additional Details

.github/labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@
102102
- # perf
103103
name: "type: :speedboat: perf"
104104
description: ""
105-
color: "FBCA04"
105+
color: "FBCA04"

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ This pull request is needed because of....
66

77
Write summary of what this pull request changes if needed.
88

9-
## Issues related to this change:
9+
## Issues related to this change:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,4 +165,4 @@ web/.yarn/*
165165
!web/.yarn/**/lib/
166166

167167
# Asdf package manager
168-
/*/.tool-versions
168+
/*/.tool-versions

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ repos:
2020
- id: check-toml
2121
- id: check-yaml
2222
- id: trailing-whitespace
23-
exclude: ^.*\.(lock)$||^docs\/
23+
exclude: ^.*\.(lock)$
2424
- id: end-of-file-fixer
25-
exclude: ^.*\.(lock)$||^docs\/
25+
exclude: ^.*\.(lock)$
2626
- id: mixed-line-ending
27-
exclude: ^.*\.(lock)$||^docs\/
27+
exclude: ^.*\.(lock)$
2828
- id: detect-private-key
2929
exclude: api/src/authentication/mock_token_generator.py
3030
- id: no-commit-to-branch

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ This is a **solution template** for creating a Single Page App (SPA) with React
2121
[Development](#development)
2222
[Contributing](#contributing)
2323

24-
<!--- The demo project is not currently deployed.
24+
<!--- The demo project is not currently deployed.
2525
A demo is running at https://template-fastapi-react.app.playground.radix.equinor.com
2626
-->
2727

2828
</div>
2929

30-
30+
3131
<a id="key-features"></a>
3232
## :dart: Key features
3333

@@ -84,4 +84,4 @@ Thanks for your interest in contributing! There are many ways to contribute to t
8484
[license]: https://github.com/equinor/boilerplate-clean-architecture/blob/main/LICENSE
8585
[releases]: https://github.com/equinor/boilerplate-clean-architecture/releases
8686
[on-push-main-branch-badge]: https://github.com/equinor/boilerplate-clean-architecture/actions/workflows/on-push-main-branch.yaml/badge.svg
87-
[on-push-main-branch-action]: https://github.com/equinor/boilerplate-clean-architecture/actions/workflows/on-push-main-branch.yaml
87+
[on-push-main-branch-action]: https://github.com/equinor/boilerplate-clean-architecture/actions/workflows/on-push-main-branch.yaml

0 commit comments

Comments
 (0)