Note
Si la commande djlint
n’est pas trouvée, assurez-vous que Python est [dans votre path].(https://www.geeksforgeeks.org/how-to-add-python-to-windows-path/).
djLint est construit avec Python 3.7+, il peut être installé en exécutant simplement:
pip install djlint
Ou avec l’installation expérimentale npm - Note, ceci requiert que python et pip soient dans votre chemin système.
npm i djlint
djLint est une application en ligne de commande. Voir configuration
pour une configuration avancée.
Usage: djlint [OPTIONS] SRC ...
djLint · lint and reformat HTML templates.
Options:
--version Show the version and exit.
-e, --extension TEXT File extension to check [default: html]
-i, --ignore TEXT Codes to ignore. ex: "H014,H017"
--reformat Reformat the file(s).
--check Check formatting on the file(s).
--indent INTEGER Indent spacing. [default: 4]
--quiet Do not print diff when reformatting.
--profile TEXT Enable defaults by template language. ops: django,
jinja, nunjucks, handlebars, golang, angular,
html [default: html]
--require-pragma Only format or lint files that starts with a comment
with the text 'djlint:on'
--lint Lint for common issues. [default option]
--use-gitignore Use .gitignore file to extend excludes.
--warn Return errors as warnings.
--preserve-leading-space Attempt to preserve leading space on text.
--preserve-blank-lines Attempt to preserve blank lines.
--format-css Also format contents of <style> tags.
--format-js Also format contents of <script> tags.
--configuration PATH Path to global configuration file in .djlintrc format
--statistics Count the number of occurrences of each
error/warning code.
-h, --help Show this message and exit.
djLint fonctionne avec un path ou stdin.
Courir avec un path -
djlint /path/to/templates --lint
Ou un fichier spécifique -
djlint /path/to/this.mustache --lint
Ou avec stdin -
echo "<div></div>" | djlint -
Stdin peut également être utilisé pour reformater le code. La sortie sera uniquement le code formaté sans messages.
echo "<div></div>" | djlint - --reformat
Sortie -
<div></div>