This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://editorconfig.org/ | |
root = true | |
[*] | |
charset = utf-8 | |
indent_size = 4 | |
indent_style = space | |
tab_width = 4 | |
end_of_line = crlf | |
insert_final_newline = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[config] | |
skip_core_tasks = true | |
[tasks.latex] | |
command = "lualatex" | |
args = [ | |
"--cmdx", | |
"-file-line-error", | |
"-synctex=1", | |
"-interaction=nonstopmode", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[mypy] | |
warn_return_any = true ;`Any`型を返す関数やメソッドに警告します | |
warn_unused_configs = true ;使用されていないconfigオプションに警告します | |
warn_unreachable = true ;到達不能なコードに警告します | |
strict_optional = true ;Noneと他の型の混在を許容しないようにします | |
ignore_missing_imports = true ;型情報がないモジュールのインポートを無視します | |
show_error_context = true ;エラーメッセージのコンテキストを表示します | |
show_column_numbers = true ;エラーの発生した列番号を表示します | |
disallow_any_generics = true ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# python generated files | |
__pycache__/ | |
*.py[cod] | |
*.so | |
*$py.class | |
# distribution / packaging | |
build/ | |
dist/ | |
wheels/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[config] | |
skip_core_tasks = true | |
[tasks.default] | |
description = "Lists all known steps" | |
cwd = "${CARGO_MAKE_CURRENT_TASK_INITIAL_MAKEFILE_DIRECTORY}" | |
command = "makers" | |
args = ["--list-all-steps"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MD013: false # line-length | |
MD024: false # no-duplicate-heading | |
MD025: true # single-title/single-h1 | |
MD041: false # first-line-heading/first-line-h1 | |
MD033: false # no-inline-html | |
MD040: true # fenced-code-language | |
MD046: true # code-block-style | |
MD048: false # code-fence-style | |
list-marker-space: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/crate-ci/typos/blob/master/docs/reference.md | |
[files] | |
extend-exclude = [ | |
"*.patch" # Automatically generated files that should not be manually modified. | |
] | |
[default] | |
extend-ignore-re = [ | |
# spellchecker: disable-line, disable-next-line, disable, enable | |
# "(?Rm)^.*(#|//|/\\*)\\s*spellchecker:\\s*disable-line$", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Exclude a variety of commonly ignored directories. | |
exclude = [ | |
".bzr", | |
".direnv", | |
".eggs", | |
".git", | |
".git-rewrite", | |
".hg", | |
".mypy_cache", | |
".nox", |
NewerOlder