File tree Expand file tree Collapse file tree 6 files changed +115
-0
lines changed
Expand file tree Collapse file tree 6 files changed +115
-0
lines changed Original file line number Diff line number Diff line change 1+ # To get started with Dependabot version updates, you'll need to specify which
2+ # package ecosystems to update and where the package manifests are located.
3+ # Please see the documentation for all configuration options:
4+ # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+ version : 2
7+ updates :
8+ - package-ecosystem : " github-actions" # See documentation for possible values
9+ directory : " /" # Location of package manifests
10+ schedule :
11+ interval : " weekly"
Original file line number Diff line number Diff line change 1+ # PR Type
2+ [ Feature | Fix | Documentation | Other() ]
3+
4+ # Short Description
5+ ...
6+
7+ # Tests Added
8+ ...
Original file line number Diff line number Diff line change 1+ repos :
2+ - repo : https://github.com/pre-commit/pre-commit-hooks
3+ rev : v5.0.0 # Use the ref you want to point at
4+ hooks :
5+ - id : trailing-whitespace
6+ - id : check-ast
7+ - id : check-builtin-literals
8+ - id : check-docstring-first
9+ - id : check-executables-have-shebangs
10+ - id : debug-statements
11+ - id : end-of-file-fixer
12+ - id : mixed-line-ending
13+ args : [--fix=lf]
14+ - id : requirements-txt-fixer
15+ - id : check-yaml
16+ - id : check-toml
17+
18+ - repo : local
19+ hooks :
20+ - id : prettier-js-format
21+ name : prettier-js-format
22+ entry : npm run format:fix
23+ files : ' app/'
24+ language : node
25+ types : [javascript]
26+ additional_dependencies :
27+ - npm
28+ - prettier
29+
30+ - repo : local
31+ hooks :
32+ - id : nextjs-lint
33+ name : Next.js Lint
34+ entry : npm run lint
35+ language : system
36+ types : [javascript, jsx, tsx]
37+ pass_filenames : false
38+
39+ ci :
40+ autofix_commit_msg : |
41+ [pre-commit.ci] Add auto fixes from pre-commit.com hooks
42+
43+ for more information, see https://pre-commit.ci
44+ autofix_prs : true
45+ autoupdate_branch : ' '
46+ autoupdate_commit_msg : ' [pre-commit.ci] pre-commit autoupdate'
47+ autoupdate_schedule : weekly
48+ skip : [mypy]
49+ submodules : false
Original file line number Diff line number Diff line change 1+ ---
2+ name : Bug report
3+ about : Create a report to help us improve
4+ title : ' '
5+ labels : ' '
6+ assignees : ' '
7+
8+ ---
9+
10+ ### Describe the bug
11+ A clear and concise description of what the bug is.
12+
13+ ### To Reproduce
14+ Code snippet or clear steps to reproduce behaviour.
15+
16+ ### Expected behavior
17+ A clear and concise description of what you expected to happen.
18+
19+ ### Screenshots
20+ If applicable, add screenshots to help explain your problem.
21+
22+ ### Version
23+ - Version info such as v0.1.5
24+
25+ ### Additional context
26+ Add any other context about the problem here.
Original file line number Diff line number Diff line change 1+ blank_issues_enabled : false
Original file line number Diff line number Diff line change 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.
You can’t perform that action at this time.
0 commit comments