chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
[flake8]
|
||||
extend-ignore = E501
|
||||
@@ -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"
|
||||
]
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"id-class-value": false,
|
||||
"attr-lowercase": false
|
||||
}
|
||||
@@ -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/**"
|
||||
]
|
||||
}
|
||||
@@ -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"]
|
||||
@@ -0,0 +1,2 @@
|
||||
no-inline-html: false
|
||||
line-length: false
|
||||
@@ -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
|
||||
@@ -0,0 +1,2 @@
|
||||
[MESSAGES CONTROL]
|
||||
disable=E0401,C0301,R0903,R1710,C0114,R0915,W1514,W1203,I1101
|
||||
@@ -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
|
||||
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"rules": {
|
||||
"terminology": {
|
||||
"defaultTerms": true,
|
||||
"exclude": [
|
||||
"README",
|
||||
"VS Code",
|
||||
"website"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user