mirror of
https://github.com/searxng/searxng.git
synced 2025-12-22 19:50:00 +00:00
- pyright configuration [1]_ - stub files: types-lxml [2]_ - addition of various type hints - enable use of new type system features on older Python versions [3]_ - ``.tool-versions`` - set python to lowest version we support (3.10.18) [4]_: Older versions typically lack some typing features found in newer Python versions. Therefore, for local type checking (before commit), it is necessary to use the older Python interpreter. .. [1] https://docs.basedpyright.com/v1.20.0/configuration/config-files/ .. [2] https://pypi.org/project/types-lxml/ .. [3] https://typing-extensions.readthedocs.io/en/latest/# .. [4] https://mise.jdx.dev/configuration.html#tool-versions Signed-off-by: Markus Heiser <markus.heiser@darmarit.de> Format: reST
73 lines
1.1 KiB
INI
73 lines
1.1 KiB
INI
# https://editorconfig.org/
|
|
|
|
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 4
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
end_of_line = lf
|
|
charset = utf-8
|
|
|
|
[{*.py,*.pyi}]
|
|
# code formatter accepts length of 120, but editor should prefer 80
|
|
max_line_length = 80
|
|
|
|
[{*.sh,manage}]
|
|
indent_style = space
|
|
indent_size = 4
|
|
|
|
# shfmt options
|
|
shell_variant = bash
|
|
switch_case_indent = true
|
|
|
|
[*.html]
|
|
# in the jinja templates we use indent size of 2 and we do not use tabs
|
|
indent_size = 2
|
|
indent_style = space
|
|
|
|
[*.css]
|
|
indent_size = 2
|
|
|
|
[*.less]
|
|
indent_size = 2
|
|
|
|
[*.js]
|
|
indent_size = 2
|
|
|
|
[*.ts]
|
|
indent_size = 2
|
|
|
|
[*.json]
|
|
indent_size = 2
|
|
insert_final_newline = ignore
|
|
|
|
[*.map]
|
|
indent_size = ignore
|
|
insert_final_newline = ignore
|
|
|
|
# Minified JavaScript files shouldn't be changed
|
|
[*.min.js]
|
|
indent_style = ignore
|
|
insert_final_newline = ignore
|
|
|
|
# Minified CSS files shouldn't be changed
|
|
[*.min.css]
|
|
indent_style = ignore
|
|
insert_final_newline = ignore
|
|
|
|
# Makefiles always use tabs for indentation
|
|
[Makefile]
|
|
indent_style = tab
|
|
|
|
# Batch files use tabs for indentation
|
|
[*.bat]
|
|
indent_style = tab
|
|
|
|
[docs/**.rst]
|
|
max_line_length = 79
|
|
|
|
[*.yml]
|
|
indent_size = 2
|