Skip to content

Commit 3948638

Browse files
committed
git[hub] plumbing update
1 parent 7cd31e8 commit 3948638

File tree

4 files changed

+169
-60
lines changed

4 files changed

+169
-60
lines changed

.github/workflows/markdown-lint.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.gitignore

Lines changed: 169 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,170 @@
1+
# IDEs and Editors
12
.vscode/
3+
.idea/
4+
*.swp
5+
*.swo
6+
*~
7+
.project
8+
.classpath
9+
.settings/
10+
.cursorrules
11+
.cursor/
12+
*.sublime-project
13+
*.sublime-workspace
14+
15+
# Operating System Files
16+
.DS_Store
17+
.DS_Store?
18+
._*
19+
.Spotlight-V100
20+
.Trashes
21+
ehthumbs.db
22+
Thumbs.db
23+
Desktop.ini
24+
25+
# Temporary Files
26+
*.tmp
27+
*.temp
28+
*.log
29+
*.pid
30+
*.seed
31+
*.coverage
32+
.nyc_output
33+
34+
# Dependencies
35+
node_modules/
36+
npm-debug.log*
37+
yarn-debug.log*
38+
yarn-error.log*
39+
.pnpm-debug.log*
40+
package-lock.json
41+
yarn.lock
42+
pnpm-lock.yaml
43+
44+
# Python
45+
__pycache__/
46+
*.py[cod]
47+
*$py.class
48+
*.so
49+
.Python
50+
build/
51+
develop-eggs/
52+
dist/
53+
downloads/
54+
eggs/
55+
.eggs/
56+
lib/
57+
lib64/
58+
parts/
59+
sdist/
60+
var/
61+
wheels/
62+
*.egg-info/
63+
.installed.cfg
64+
*.egg
65+
MANIFEST
66+
.env
67+
.venv
68+
env/
69+
venv/
70+
ENV/
71+
env.bak/
72+
venv.bak/
73+
74+
# Go
75+
*.exe
76+
*.exe~
77+
*.dll
78+
*.so
79+
*.dylib
80+
*.test
81+
*.out
82+
go.work
83+
84+
# Java
85+
*.class
86+
*.jar
87+
*.war
88+
*.ear
89+
*.zip
90+
*.tar.gz
91+
*.rar
92+
hs_err_pid*
93+
94+
# .NET
95+
bin/
96+
obj/
97+
*.user
98+
*.suo
99+
*.userosscache
100+
*.sln.docstates
101+
102+
# Rust
103+
target/
104+
Cargo.lock
105+
106+
# Docker
107+
.dockerignore
108+
docker-compose.override.yml
109+
110+
# Kubernetes/Helm
111+
*.tgz
112+
charts/*.tgz
113+
charts/*/charts/
114+
charts/*/Chart.lock
115+
116+
# Terraform
117+
*.tfstate
118+
*.tfstate.*
119+
.terraform/
120+
.terraform.lock.hcl
121+
122+
# Security and Secrets
123+
.env
124+
.env.local
125+
.env.development.local
126+
.env.test.local
127+
.env.production.local
128+
*.pem
129+
*.key
130+
*.crt
131+
*.p12
132+
*.pfx
133+
secrets.yml
134+
secrets.yaml
135+
.secrets
136+
137+
# Backup Files
138+
*.bak
139+
*.backup
140+
*.old
141+
*.orig
142+
143+
# Cache and Temporary Directories
144+
.cache/
145+
.tmp/
146+
tmp/
147+
temp/
148+
.sass-cache/
149+
.eslintcache
150+
.stylelintcache
151+
152+
# Archives
153+
*.zip
154+
*.tar.gz
155+
*.tar.bz2
156+
*.rar
157+
*.7z
158+
159+
# Database
160+
*.db
161+
*.sqlite
162+
*.sqlite3
163+
164+
# Logs
165+
logs/
166+
*.log
167+
npm-debug.log*
168+
yarn-debug.log*
169+
yarn-error.log*
170+
lerna-debug.log*

.markdownlint.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

.pre-commit-config.yaml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,13 @@ repos:
44
hooks:
55
- id: trailing-whitespace
66
- id: end-of-file-fixer
7-
- id: check-yaml
8-
exclude: ^invidious/templates/
97
- id: check-added-large-files
108
- id: check-merge-conflict
119
- id: check-case-conflict
12-
- id: check-json
13-
- id: check-toml
14-
- id: debug-statements
1510

1611
- repo: https://github.com/adrienverge/yamllint
1712
rev: v1.35.1
1813
hooks:
1914
- id: yamllint
2015
args: [--config-file, .yamllint]
2116
exclude: ^invidious/templates/
22-
23-
- repo: https://github.com/igorshubovych/markdownlint-cli
24-
rev: v0.38.0
25-
hooks:
26-
- id: markdownlint
27-
args: [--config, .markdownlint.json]

0 commit comments

Comments
 (0)