- .editorconfig: standard fleet template (utf-8, lf, 4sp, final newline, trim trailing ws, 2sp for yml/yaml/toml/json, tab for Makefile) - .gitignore: add *.crt to secrets block; add warmed_cookies/ (no leading dot) alongside .warmed_cookies/ for compatibility with cookie warmer code paths that write to either location Pre-commit hooks already match the requested set (ruff lint+format, mypy --strict, gitleaks, bandit -r -x tests/,.venv,__pycache__, trailing-whitespace/end-of-file-fixer/check-yaml/check-json/check-merge-conflict).
26 lines
No EOL
516 B
INI
26 lines
No EOL
516 B
INI
# SPDX-License-Identifier: MIT
|
|
# Copyright (c) 2026 Rug Munch Media LLC
|
|
# Part of Pry — https://git.rugmunch.io/RugMunchMedia/pryscraper
|
|
# Licensed under MIT. See LICENSE.
|
|
# EditorConfig — https://editorconfig.org
|
|
root = true
|
|
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
[*.{yml,yaml,toml,json}]
|
|
indent_size = 2
|
|
|
|
[*.md]
|
|
trim_trailing_whitespace = false
|
|
|
|
[Makefile]
|
|
indent_style = tab
|
|
|
|
[*.{bat,cmd,ps1}]
|
|
end_of_line = crlf |