Skip to content

Commit e48b535

Browse files
committed
Public release
0 parents  commit e48b535

35 files changed

+2160
-0
lines changed

.editorconfig

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
root = true
2+
3+
4+
[*]
5+
charset = utf-8
6+
end_of_line = lf
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
10+
11+
[*.py]
12+
indent_style = space
13+
indent_size = 4
14+
15+
16+
[Makefile]
17+
indent_style = tab
18+
19+
20+
[*.{yml,yaml}]
21+
indent_style = space
22+
indent_size = 2
23+
24+
25+
[*.cfg]
26+
indent_style = space
27+
indent_size = 4

.env.example

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
NAME=pre-commit-config-shellcheck
2+
COVERALLS_REPO_TOKEN=
3+
TWINE_USERNAME=__token__
4+
TWINE_PASSWORD=
5+
TEST_TWINE_PASSWORD=

.envrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dotenv
2+
layout python

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @vint21h @Artesius

.github/ISSUE_TEMPLATE.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!--- Provide a general summary of the issue in the Title above -->
2+
3+
## Expected Behavior
4+
<!--- Tell what should happen -->
5+
6+
## Current Behavior
7+
<!--- Tell what happens instead of the expected behavior -->
8+
9+
## Possible Solution
10+
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
11+
12+
## Steps to Reproduce
13+
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
14+
<!--- reproduce this bug. Include code to reproduce, if relevant -->
15+
1.
16+
2.
17+
3.
18+
19+
## Context (Environment)
20+
<!--- How has this issue affected you? What are you trying to accomplish? -->
21+
<!--- Providing context helps come up with a solution that is most useful in the real world -->
22+
23+
<!--- Provide a general summary of the issue in the Title above -->
24+
25+
## Detailed Description
26+
<!--- Provide a detailed description of the change or addition you are proposing -->
27+
28+
## Possible Implementation
29+
<!--- Not obligatory, but suggest an idea for implementing addition or change -->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!--- Provide a general summary of your changes in the Title above -->
2+
3+
## Description
4+
<!--- Describe your changes in detail -->
5+
6+
## Related Issue
7+
<!--- If suggesting a new feature or change, please discuss it in an issue first -->
8+
<!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
9+
<!--- Please link to the issue here: -->
10+
11+
## Motivation and Context
12+
<!--- Why is this change required? What problem does it solve? -->
13+
<!--- If it fixes an open issue, please link to the issue here. -->
14+
15+
## How Has This Been Tested?
16+
<!--- Please describe in detail how you tested your changes. -->
17+
<!--- Include details of your testing environment, and the tests you ran to -->
18+
<!--- see how your change affects other areas of the code, etc. -->

.github/SECURITY.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
So, because this is not a thing that can produce security problems in the project using it,
6+
security policy is very simple: supported only the last major or minor branch.
7+
8+
| Version | Supported |
9+
|---------| ------------------ |
10+
| 0.3.x | :white_check_mark: |
11+
12+
## Reporting a Vulnerability
13+
14+
If you found something that in your opinion may produce any security problem, please create a [new issue](https://github.com/Anadea/pre-commit-config-shellcheck/issues/new/).

.github/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true

.github/dependabot.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "pip"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
allow:
8+
- dependency-name: "all"
9+
dependency-type: "direct"
10+
- package-ecosystem: "github-actions"
11+
directory: "/"
12+
schedule:
13+
interval: "daily"

.github/workflows/build.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: "build"
2+
on:
3+
push:
4+
branches:
5+
- "*"
6+
tags:
7+
- "*"
8+
pull_request:
9+
branches:
10+
- "*"
11+
workflow_dispatch:
12+
workflow_call:
13+
env:
14+
NAME: "pre-commit-config-shellcheck"
15+
DEFAULT_PYTHON_VERSION: "3.10"
16+
jobs:
17+
check-requirements:
18+
uses: "./.github/workflows/check-requirements.yml"
19+
check:
20+
name: "${{ matrix.toxenv }}"
21+
uses: "./.github/workflows/check.yml"
22+
test:
23+
name: "${{ matrix.python-version }}"
24+
uses: "./.github/workflows/test.yml"
25+
if: success()
26+
needs: ["check"]
27+
coveralls:
28+
uses: "./.github/workflows/coveralls.yml"
29+
if: success()
30+
needs: ["test", "check"]

0 commit comments

Comments
 (0)