Skip to content

Commit 01eab10

Browse files
author
AndreasAugustin
committed
chore(template): merge template changes 🆙
Signed-off-by: AndreasAugustin <[email protected]>
1 parent 8ec19a5 commit 01eab10

File tree

8 files changed

+73
-13
lines changed

8 files changed

+73
-13
lines changed

.devcontainer/docker-compose.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
---
21
#-------------------------------------------------------------------------------------------------------------
32
# Copyright (c) Microsoft Corporation. All rights reserved.
43
# Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information.
54
#-------------------------------------------------------------------------------------------------------------
65

6+
version: '3.7'
77
services:
88
# Update this to the name of the service you want to work with in your docker-compose.yml file
99
dev:
1010
# You may want to add a non-root user to your Dockerfile and uncomment the line below
1111
# to cause all processes to run as this user. Once present, you can also simply
1212
# use the "remoteUser" property in devcontainer.json if you just want VS Code and
1313
# its sub-processes (terminals, tasks, debugging) to execute as the user. On Linux,
14-
# you may need to ensure the UID and GID of the container user you create matches your
14+
# you may need to ensure the UID and GID of the container user you create matches your
1515
# local user. See https://aka.ms/vscode-remote/containers/non-root for details.
1616
# user: vscode
1717

@@ -23,13 +23,13 @@ services:
2323
# Uncomment if you want to expose any additional ports. The snippet below exposes port 3000.
2424
# ports:
2525
# - 3000:3000
26-
26+
2727
volumes:
2828
# Update this to wherever you want VS Code to mount the folder of your project
2929
- .:/workspace:cached
3030

3131
# Uncomment the next line to use Docker from inside the container. See https://aka.ms/vscode-remote/samples/docker-in-docker-compose for details.
32-
# - /var/run/docker.sock:/var/run/docker.sock
32+
# - /var/run/docker.sock:/var/run/docker.sock
3333

3434
# Uncomment the next four lines if you will use a ptrace-based debugger like C++, Go, and Rust.
3535
# cap_add:
@@ -39,3 +39,4 @@ services:
3939

4040
# Overrides default command so things don't shut down after the process ends.
4141
command: /bin/sh -c "while sleep 1000; do :; done"
42+

.editorconfig

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,3 @@ indent_size = 2
2323
[Makefile]
2424
indent_style = tab
2525
indent_size = 4
26-
27-
[*.sh]
28-
indent_size = 2
29-
indent_style = space

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
issuehunt: andreasaugustin
2+
custom: ['https://paypal.me/AugustinAndreas']
13
github: [AndreasAugustin]
24
ko_fi: andreasaugustin
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
---
8+
9+
**Describe the bug**
10+
A clear and concise description of what the bug is.
11+
**To Reproduce**
12+
Steps to reproduce the behavior:
13+
14+
1. Go to '...'
15+
2. Click on '....'
16+
3. Scroll down to '....'
17+
4. See error
18+
19+
**Expected behavior**
20+
A clear and concise description of what you expected to happen.
21+
**Screenshots**
22+
If applicable, add screenshots to help explain your problem.
23+
**Desktop (please complete the following information):**
24+
25+
- OS: [e.g. iOS]
26+
- Browser [e.g. chrome, safari]
27+
- Version [e.g. 22]
28+
29+
**Smartphone (please complete the following information):**
30+
31+
- Device: [e.g. iPhone6]
32+
- OS: [e.g. iOS8.1]
33+
- Browser [e.g. stock browser, safari]
34+
- Version [e.g. 22]
35+
36+
**Additional context**
37+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/CUSTOM.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Custom issue template
3+
about: Describe this issue template's purpose here.
4+
title: ""
5+
labels: ""
6+
assignees: ""
7+
---
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/SECURITY.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,4 @@
22

33
## Reporting a Vulnerability
44

5-
If you find a [security vulnerability advisory](https://github.com/AndreasAugustin/actions-template-sync/security/advisories/new)
6-
7-
- click issues
8-
- click report a vulnerability
5+
If you find a security vulnerability please open a bug ticket.

.markdownlintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"default": true,
3-
"MD013": { "line_length": 150, "tables": false }
3+
"MD013": { "line_length": 150 }
44
}

0 commit comments

Comments
 (0)