chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:30:30 +08:00
commit 914fea506e
2793 changed files with 802106 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
[flake8]
extend-ignore = E501
+15
View File
@@ -0,0 +1,15 @@
title = "gitleaks config"
[extend]
# useDefault will extend the base configuration with the default gitleaks config:
# https://github.com/zricethezav/gitleaks/blob/master/config/gitleaks.toml
useDefault = true
[[rules]]
id = "aws-access-token"
description = "AWS Access Token"
regex = '''AKIA[0-9A-Z]{16}'''
[rules.allowlist]
paths = [
"gemini/use-cases/education/ai_quick_build_experience_backend.ipynb"
]
+4
View File
@@ -0,0 +1,4 @@
{
"id-class-value": false,
"attr-lowercase": false
}
+25
View File
@@ -0,0 +1,25 @@
{
"threshold": 3,
"reporters": ["html", "markdown"],
"ignore": [
"**/node_modules/**",
"**/.git/**",
"**/.rbenv/**",
"**/.venv/**",
"**/*cache*/**",
"**/*.json",
"**/*.yaml",
"**/*.yml",
"**/*.md",
"**/*.html",
"**/*.xml",
"**/*.jpg",
"**/*.png",
"**/*.svg",
"**/*.zip",
"**/*.bin",
"**/noxfile.py",
"**/quickbot/**/*.*",
"**/.nox/**"
]
}
+11
View File
@@ -0,0 +1,11 @@
[flake8]
ignore = ["E501", "E402"]
[mypy]
ignore_missing_imports = true # Effectively ignores "import-not-found"
[pylint]
disable = ["line-too-long", "missing-module-docstring", "import-error", "wrong-import-position", "ungrouped-imports"]
[ruff]
ignore = ["E402"]
+2
View File
@@ -0,0 +1,2 @@
no-inline-html: false
line-length: false
+18
View File
@@ -0,0 +1,18 @@
[mypy]
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
no_implicit_optional = True
check_untyped_defs = True
disallow_subclassing_any = True
warn_incomplete_stub = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_unreachable = True
follow_imports = skip
ignore_missing_imports = True
explicit_package_bases = True
disable_error_code = misc, no-untyped-call, no-any-return
+2
View File
@@ -0,0 +1,2 @@
[MESSAGES CONTROL]
disable=E0401,C0301,R0903,R1710,C0114,R0915,W1514,W1203,I1101
+12
View File
@@ -0,0 +1,12 @@
[sqlfluff]
dialect = bigquery
templater = placeholder
exclude_rules = CV06, RF05
[sqlfluff:templater:placeholder]
param_style = question_mark
[sqlfluff:indentation]
tab_space_size = 2
+12
View File
@@ -0,0 +1,12 @@
{
"rules": {
"terminology": {
"defaultTerms": true,
"exclude": [
"README",
"VS Code",
"website"
]
}
}
}