337 changed files with 3159 additions and 1130 deletions
@ -0,0 +1,11 @@ |
|||
[codespell] |
|||
# Skip data tables that contain many short server identifiers (e.g. "fof", "nd") |
|||
skip = |
|||
lgsm/data/*.csv, |
|||
package-lock.json, |
|||
*/package-lock.json, |
|||
node_modules, |
|||
*/node_modules/* |
|||
|
|||
# Ignore common identifiers/acronyms and extensions used throughout LinuxGSM |
|||
ignore-words-list = distroname,fof,nd,sav,parms,ThirdParty |
|||
@ -0,0 +1,2 @@ |
|||
[flake8] |
|||
max-line-length = 120 |
|||
@ -0,0 +1,9 @@ |
|||
title = "LinuxGSM Gitleaks Config" |
|||
|
|||
[allowlist] |
|||
description = "Known false positives" |
|||
regexes = [ |
|||
# Google Analytics 4 Measurement Protocol API secret - not a sensitive credential, |
|||
# it is intentionally embedded in client-side code and is safe to be public. |
|||
'''apisecret="[A-Za-z0-9_\-]+"''', |
|||
] |
|||
@ -0,0 +1,20 @@ |
|||
# Configuration for markdownlint (used by Super Linter) |
|||
|
|||
# MD041: README starts with HTML badges in this repo. |
|||
MD041: false |
|||
|
|||
# MD051: GitHub heading anchor generation can differ (emoji, punctuation). |
|||
MD051: false |
|||
|
|||
# MD013: The project documentation frequently contains long URLs/commands. |
|||
MD013: false |
|||
|
|||
# MD033: The main README uses inline HTML for badges. |
|||
MD033: false |
|||
|
|||
# MD007: Repo uses 2-space indentation for nested lists. |
|||
MD007: |
|||
indent: 2 |
|||
|
|||
# MD030: Repo mixes 1-space unordered and 2-space ordered list markers. |
|||
MD030: false |
|||
@ -0,0 +1 @@ |
|||
disable=SC2154,SC2034 |
|||
@ -0,0 +1,25 @@ |
|||
extends: default |
|||
|
|||
rules: |
|||
document-start: disable |
|||
truthy: disable |
|||
|
|||
line-length: |
|||
max: 200 |
|||
level: warning |
|||
allow-non-breakable-words: true |
|||
allow-non-breakable-inline-mappings: true |
|||
|
|||
braces: |
|||
min-spaces-inside: 0 |
|||
max-spaces-inside: 1 |
|||
min-spaces-inside-empty: 0 |
|||
max-spaces-inside-empty: 0 |
|||
|
|||
empty-lines: |
|||
max: 2 |
|||
max-start: 0 |
|||
max-end: 0 |
|||
|
|||
comments: |
|||
min-spaces-from-content: 1 |
|||
@ -0,0 +1,3 @@ |
|||
# Prettier auto-commit runs with GITHUB_TOKEN (GitHub App). |
|||
# GitHub blocks that token from creating/updating anything under .github/workflows. |
|||
.github/workflows/** |
|||
@ -1 +1 @@ |
|||
disable=SC2154 |
|||
disable=SC2154,SC2034 |
|||
|
|||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue