PowerShellでパスワード用のコード表(16x16)を生成します.
PS > New-Passcard [-Uppercase] [-Lowercase] [-Number] [-Symbol] [-NoSimilar] [-Separtor] [-Seed <int>]
[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] | |
alias = "test" | |
[tasks.ps] | |
description = "powershell script example" | |
category = "Common" | |
script_runner = "powershell" |
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 |
# 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", |
# 文字数の制限 (default: 80) | |
printWidth: 119 | |
# 末尾のコロンを削除するかどうか. ["all", "es5", "none"] | |
trailingComma: "all" | |
# タブを使うかどうか (.editorconfig) | |
# useTabs: true | |
# タブサイズ (.editorconfig) |