# PR Description This PR is a part of the community contributed toolkits story. * `arcade new` now uses jinja templates * `arcade new` now creates a "cookiecutter" toolkit equipped with everything a community contributed toolkit needs to be easily tested, published to PyPi, etc. as its own Github repo * I created the following toolkit with `arcade new`: - [PyPi](https://pypi.org/project/arcade-local-file-management/0.1.5/) - [Github](https://github.com/EricGustin/local_file_management/tree/0.1.5)
15 lines
368 B
TOML
15 lines
368 B
TOML
# See https://prettier.io/docs/en/configuration
|
|
|
|
# Note: This prettier config is only for the non-python files in this repo.
|
|
# Python files are formatted with ruff and ignored in .prettierignore
|
|
|
|
trailingComma = "es5"
|
|
tabWidth = 4
|
|
semi = false
|
|
singleQuote = false
|
|
|
|
[[overrides]]
|
|
files = [ "*.json", "*.jsonc", "*.yml", "*.yaml" ]
|
|
|
|
[overrides.options]
|
|
tabWidth = 2
|