Skip to content

Commit 7008e8e

Browse files
committed
update/clean up
1 parent 89c5e53 commit 7008e8e

97 files changed

Lines changed: 15957 additions & 13972 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ DEFAULT_TICKERS=AAPL,MSFT,GOOGL,AMZN,TSLA
6464
# Default: 2 years ago (automatically calculated)
6565
# INDEX_START_DATE=1/1/2023
6666

67-
# End date for index processing (m/d/YYYY format)
67+
# End date for index processing (m/d/YYYY format)
6868
# Default: Current date (automatically calculated)
6969
# INDEX_END_DATE=12/31/2025
7070

@@ -110,7 +110,7 @@ APP_NAME=SEC EDGAR Filing API
110110
# DATABASE_URL=postgresql://user:pass@db-server/sec_edgar
111111

112112
# ============================================================================
113-
# DEVELOPMENT CONFIGURATION EXAMPLES
113+
# DEVELOPMENT CONFIGURATION EXAMPLES
114114
# ============================================================================
115115
# Uncomment these settings for development:
116116

.gitignore

Lines changed: 3199 additions & 1 deletion
Large diffs are not rendered by default.

.pre-commit-config-simple.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v4.6.0
4+
hooks:
5+
- id: trailing-whitespace
6+
- id: end-of-file-fixer
7+
- id: check-yaml
8+
- id: check-added-large-files
9+
10+
- repo: https://github.com/astral-sh/ruff-pre-commit
11+
rev: v0.9.8
12+
hooks:
13+
- id: ruff
14+
args: [--fix, --extend-ignore=E402,B007,F841,E741,UP031,UP038,B904]
15+
- id: ruff-format

.pre-commit-config.yaml

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,13 @@
1-
# See https://pre-commit.com for more information
2-
# See https://pre-commit.com/hooks.html for more hooks
31
repos:
42
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.5.0
3+
rev: v4.6.0
64
hooks:
75
- id: trailing-whitespace
86
- id: end-of-file-fixer
97
- id: check-yaml
108
- id: check-added-large-files
11-
- id: check-merge-conflict
12-
- id: check-toml
13-
- id: debug-statements
149

1510
- repo: https://github.com/astral-sh/ruff-pre-commit
16-
rev: v0.5.7
11+
rev: v0.9.8
1712
hooks:
18-
- id: ruff
19-
args: [ --fix ]
2013
- id: ruff-format
21-
22-
- repo: https://github.com/pre-commit/mirrors-mypy
23-
rev: v1.5.1
24-
hooks:
25-
- id: mypy
26-
additional_dependencies: [types-requests, types-beautifulsoup4]
27-
args: [--ignore-missing-imports]

0 commit comments

Comments
 (0)