File tree Expand file tree Collapse file tree 4 files changed +30
-34
lines changed Expand file tree Collapse file tree 4 files changed +30
-34
lines changed Original file line number Diff line number Diff line change
1
+ # Cache
1
2
__pycache__
2
3
.mypy_cache
3
4
.pytest_cache
4
5
.ruff_cache
5
6
7
+ # Virtual envs
6
8
.venv
7
9
.direnv
8
10
.envrc
9
11
.python-version
10
12
13
+ # Poetry
11
14
poetry.toml
12
15
poetry.lock
13
16
17
+ # Mise
18
+ mise.toml
19
+ .mise.toml
20
+
21
+ # Egg and build artifacts
14
22
* .egg-info /
15
23
* .egg
16
24
dist /
17
25
build /
26
+
27
+ # Coverage reports
18
28
.coverage *
19
29
htmlcov
20
30
31
+ # IDE, editors
21
32
.vscode
22
33
.idea
23
34
.DS_Store
35
+ .nvim.lua
36
+ Session.vim
24
37
38
+ # Docs
25
39
docs /changelog.md
26
40
27
- # default folder for memory storage data
41
+ # Website build artifacts, node dependencies
42
+ website /build
43
+ website /node_modules
44
+ website /.yarn
45
+ website /.docusaurus
46
+ website /api-typedoc-generated.json
47
+ website /apify-shared-docspec-dump.jsonl
48
+ website /docspec-dump.jsonl
49
+ website /module_shortcuts.json
50
+ website /typedoc-types *
51
+
52
+ # Default directory for memory storage
28
53
storage /
Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : local
3
3
hooks :
4
- - id : lint
5
- name : Lint codebase
4
+ - id : lint-check
5
+ name : Lint check
6
6
entry : make lint
7
7
language : system
8
8
pass_filenames : false
9
9
10
10
- id : type-check
11
- name : Type-check codebase
11
+ name : Type check
12
12
entry : make type-check
13
13
language : system
14
14
pass_filenames : false
Original file line number Diff line number Diff line change @@ -121,12 +121,6 @@ indent-style = "space"
121
121
"**/__init__.py" = [
122
122
" F401" , # Unused imports
123
123
]
124
- "**/{scripts}/*" = [
125
- " D" , # Everything from the pydocstyle
126
- " INP001" , # File {filename} is part of an implicit namespace package, add an __init__.py
127
- " PLR2004" , # Magic value used in comparison, consider replacing {value} with a constant variable
128
- " T20" , # flake8-print
129
- ]
130
124
"**/{tests}/*" = [
131
125
" D" , # Everything from the pydocstyle
132
126
" INP001" , # File {filename} is part of an implicit namespace package, add an __init__.py
@@ -169,7 +163,7 @@ timeout = 1200
169
163
[tool .mypy ]
170
164
python_version = " 3.9"
171
165
plugins = [" pydantic.mypy" ]
172
- files = [" scripts " , " src" , " tests" ]
166
+ files = [" src" , " tests" ]
173
167
check_untyped_defs = true
174
168
disallow_incomplete_defs = true
175
169
disallow_untyped_calls = true
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments