Skip to content

Commit bd9ee06

Browse files
committed
initial version adapted from KDash
0 parents  commit bd9ee06

Some content is hidden

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

62 files changed

+6165
-0
lines changed

.cargo-husky/hooks/pre-commit

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/sh
2+
3+
set -e
4+
5+
echo "Running pre-commit hook:"
6+
7+
echo "Executing: cargo fmt"
8+
cargo fmt
9+
10+
echo "Executing: make lint"
11+
make lint

.cargo-husky/hooks/pre-push

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/sh
2+
3+
set -e
4+
5+
echo "Running pre-push hook:"
6+
7+
echo "Executing: make lint"
8+
make lint
9+
10+
echo "Executing: cargo test"
11+
cargo test

.dockerignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.github
2+
.git
3+
.vscode
4+
/screenshots
5+
/snap
6+
/target
7+
README.md
8+
CHANGELOG.md
9+
LICENSE
10+
ui.gif

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [deepu105]

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
Steps to reproduce the behavior or a screencast
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS and OS version: [e.g. macOS 10.1 / Fedora 34 / WIndows 10]
28+
- Terminal name and version [e.g. Tilix, Yakuake, Gnome Terminal, Konsole, iTerm, Windows CMD]
29+
- Shell name and version [e.g. bash, zsh, fish, powershell]
30+
- Kubectl Client Version [e.g. 1.19]
31+
- Kubectl Server Version [e.g. 1.19]
32+
- KDash version [e.g. 0.0.8]
33+
34+
**Additional context**
35+
Add any other context about the problem here.
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/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "cargo"
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "daily"

.github/grcov.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
branch: true
2+
ignore-not-existing: true
3+
llvm: true
4+
filter: covered
5+
ignore:
6+
- "/*"
7+
- "C:/*"
8+
- "../*"
9+
keep-only:
10+
- "./src/*"
11+
excl-line: "#\\[derive\\("
12+
excl-br-line: "#\\[derive\\("
13+
excl-start: "mod tests \\{"
14+
excl-br-start: "mod tests \\{"
15+
parallel: true

0 commit comments

Comments
 (0)