PowerShellでパスワード用のコード表(16x16)を生成します.
PS > New-Passcard [-Uppercase] [-Lowercase] [-Number] [-Symbol] [-NoSimilar] [-Separtor] [-Seed <int>]
# 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 |
[config] | |
skip_core_tasks = true | |
[tasks.latex] | |
command = "lualatex" | |
args = [ | |
"--cmdx", | |
"-file-line-error", | |
"-synctex=1", | |
"-interaction=nonstopmode", |
[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 ; |
# python generated files | |
__pycache__/ | |
*.py[cod] | |
*.so | |
*$py.class | |
# distribution / packaging | |
build/ | |
dist/ | |
wheels/ |
[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"] |
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: |
# 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$", |
# Exclude a variety of commonly ignored directories. | |
exclude = [ | |
".bzr", | |
".direnv", | |
".eggs", | |
".git", | |
".git-rewrite", | |
".hg", | |
".mypy_cache", | |
".nox", |