evennia/.gitignore
Dimitri bd8bc89f80 issue #2243 -- prefer f-strings over %-interpolation
edited docs to prefer f-strings, then str.format(), and remove %-interpolation

additional ad-hoc documentation fixes, as opportunities seen:
- replace Built-In Function (BIF) "min" variable with "mins"
- prefer BIF str(var) over "%s" % var
- reformat some code examples to clarify multiple args passed to functions
- change some single-quote strings to double-quotes for consistency
- fix mismatched parens

misc edits:
- add .vscode/ to gitignore
2021-10-12 07:14:04 -06:00

58 lines
561 B
Text

*.py[cod]
# C extensions
*.so
# Packages
*.egg
*.egg-info
dist
build
eggs
parts
var
sdist
develop-eggs
.installed.cfg
lib
lib64
__pycache__
# Other
*.swp
*.log
*.pid
*.restart
*.db3
# Installer logs
pip-log.txt
# Unit test / coverage reports
.coverage
.tox
nosetests.xml
# Translations
# *.mo
# Mr Developer
.mr.developer.cfg
.project
.pydevproject
# PyCharm config
.idea
# Windows files generated during setup
evennia.bat
twistd.bat
# never commit docs/build
docs/build
# For users of Atom
.remote-sync.json
# Visual Studio Code (VS-Code)
.vscode/