djlint 1.28.0 → 1.30.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (368) hide show
  1. package/.coveragerc +9 -0
  2. package/.editorconfig +21 -0
  3. package/.flake8 +0 -0
  4. package/.github/FUNDING.yml +2 -0
  5. package/.github/ISSUE_TEMPLATE/config.yml +6 -0
  6. package/.github/ISSUE_TEMPLATE/feature_request.md +19 -0
  7. package/.github/ISSUE_TEMPLATE/formatter_but_report.md +30 -0
  8. package/.github/ISSUE_TEMPLATE/linter_bug_report.md +34 -0
  9. package/.github/ISSUE_TEMPLATE/translation.md +14 -0
  10. package/.github/config.yml +4 -0
  11. package/.github/pull_request_template.md +10 -0
  12. package/.github/workflows/cancel.yml +17 -0
  13. package/.github/workflows/demo.yml +98 -0
  14. package/.github/workflows/issues.yml +23 -0
  15. package/.github/workflows/linkcheck.yaml +21 -0
  16. package/.github/workflows/lint.yml +25 -0
  17. package/.github/workflows/release.yml +57 -0
  18. package/.github/workflows/test.yml +85 -0
  19. package/.pre-commit-config.yaml +45 -0
  20. package/.pre-commit-hooks.yaml +71 -0
  21. package/.prettierignore +7 -0
  22. package/.prettierrc +11 -0
  23. package/.releaserc +16 -0
  24. package/CHANGELOG.md +13 -0
  25. package/MANIFEST.in +2 -0
  26. package/build_demo.sh +17 -0
  27. package/docs/.eleventy.js +425 -0
  28. package/docs/.eleventyignore +2 -0
  29. package/docs/.prettierignore +3 -0
  30. package/docs/.prettierrc +11 -0
  31. package/docs/package.json +73 -0
  32. package/docs/readme.md +17 -0
  33. package/docs/src/_data/configuration.json +646 -0
  34. package/docs/src/_data/eleventyComputed.js +22 -0
  35. package/docs/src/_data/i18n/index.js +159 -0
  36. package/docs/src/_data/js.js +7 -0
  37. package/docs/src/_data/locales.js +17 -0
  38. package/docs/src/_data/site.json +8 -0
  39. package/docs/src/_includes/demo.njk +157 -0
  40. package/docs/src/_includes/docs_layout.njk +34 -0
  41. package/docs/src/_includes/foot.njk +26 -0
  42. package/docs/src/_includes/index.njk +187 -0
  43. package/docs/src/_includes/languages_layout.njk +11 -0
  44. package/docs/src/_includes/layout.njk +111 -0
  45. package/docs/src/_includes/nav.njk +85 -0
  46. package/docs/src/_utils/minify-html.js +14 -0
  47. package/docs/src/_utils/rollupper.js +91 -0
  48. package/docs/src/_utils/scripts.11ty.js +27 -0
  49. package/docs/src/demo.njk +4 -0
  50. package/docs/src/docs/best-practices.md +78 -0
  51. package/docs/src/docs/changelog.md +452 -0
  52. package/docs/src/docs/configuration.md +145 -0
  53. package/docs/src/docs/docs.json +4 -0
  54. package/docs/src/docs/formatter.md +82 -0
  55. package/docs/src/docs/getting-started.md +126 -0
  56. package/docs/src/docs/ignoring-code.md +75 -0
  57. package/docs/src/docs/integrations.md +120 -0
  58. package/docs/src/docs/languages/angular.md +31 -0
  59. package/docs/src/docs/languages/django.md +40 -0
  60. package/docs/src/docs/languages/golang.md +31 -0
  61. package/docs/src/docs/languages/handlebars.md +31 -0
  62. package/docs/src/docs/languages/jinja.md +39 -0
  63. package/docs/src/docs/languages/languages.json +3 -0
  64. package/docs/src/docs/languages/mustache.md +31 -0
  65. package/docs/src/docs/languages/nunjucks.md +39 -0
  66. package/docs/src/docs/languages/twig.md +41 -0
  67. package/docs/src/docs/linter.md +199 -0
  68. package/docs/src/fr/demo.njk +4 -0
  69. package/docs/src/fr/docs/best-practices.md +78 -0
  70. package/docs/src/fr/docs/changelog.md +452 -0
  71. package/docs/src/fr/docs/configuration.md +144 -0
  72. package/docs/src/fr/docs/docs.json +3 -0
  73. package/docs/src/fr/docs/formatter.md +83 -0
  74. package/docs/src/fr/docs/getting-started.md +127 -0
  75. package/docs/src/fr/docs/ignoring-code.md +75 -0
  76. package/docs/src/fr/docs/integrations.md +100 -0
  77. package/docs/src/fr/docs/languages/angular.md +31 -0
  78. package/docs/src/fr/docs/languages/django.md +31 -0
  79. package/docs/src/fr/docs/languages/golang.md +31 -0
  80. package/docs/src/fr/docs/languages/handlebars.md +31 -0
  81. package/docs/src/fr/docs/languages/jinja.md +31 -0
  82. package/docs/src/fr/docs/languages/languages.json +3 -0
  83. package/docs/src/fr/docs/languages/mustache.md +31 -0
  84. package/docs/src/fr/docs/languages/nunjucks.md +31 -0
  85. package/docs/src/fr/docs/languages/twig.md +31 -0
  86. package/docs/src/fr/docs/linter.md +207 -0
  87. package/docs/src/fr/fr.json +4 -0
  88. package/docs/src/fr/index.njk +4 -0
  89. package/docs/src/index.njk +4 -0
  90. package/docs/src/lib/generate-content-hash.js +13 -0
  91. package/docs/src/robots.txt +4 -0
  92. package/docs/src/ru/demo.njk +4 -0
  93. package/docs/src/ru/docs/best-practices.md +78 -0
  94. package/docs/src/ru/docs/changelog.md +453 -0
  95. package/docs/src/ru/docs/configuration.md +142 -0
  96. package/docs/src/ru/docs/docs.json +3 -0
  97. package/docs/src/ru/docs/formatter.md +82 -0
  98. package/docs/src/ru/docs/getting-started.md +127 -0
  99. package/docs/src/ru/docs/ignoring-code.md +75 -0
  100. package/docs/src/ru/docs/integrations.md +100 -0
  101. package/docs/src/ru/docs/languages/angular.md +31 -0
  102. package/docs/src/ru/docs/languages/django.md +31 -0
  103. package/docs/src/ru/docs/languages/golang.md +31 -0
  104. package/docs/src/ru/docs/languages/handlebars.md +31 -0
  105. package/docs/src/ru/docs/languages/jinja.md +31 -0
  106. package/docs/src/ru/docs/languages/languages.json +3 -0
  107. package/docs/src/ru/docs/languages/mustache.md +31 -0
  108. package/docs/src/ru/docs/languages/nunjucks.md +31 -0
  109. package/docs/src/ru/docs/languages/twig.md +31 -0
  110. package/docs/src/ru/docs/linter.md +126 -0
  111. package/docs/src/ru/index.njk +4 -0
  112. package/docs/src/ru/ru.json +4 -0
  113. package/docs/src/sitemap.njk +16 -0
  114. package/docs/src/static/css/site.scss +467 -0
  115. package/docs/src/static/font/fontawesome/stylesheet.scss +78 -0
  116. package/docs/src/static/img/apple-touch-icon.png +0 -0
  117. package/docs/src/static/img/demo-min.gif +0 -0
  118. package/docs/src/static/img/demo.gif +0 -0
  119. package/docs/src/static/img/demo.webm +0 -0
  120. package/docs/src/static/img/favicon-16x16.png +0 -0
  121. package/docs/src/static/img/favicon-32x32.png +0 -0
  122. package/docs/src/static/img/favicon.ico +0 -0
  123. package/docs/src/static/img/icon-square.indd +0 -0
  124. package/docs/src/static/img/icon-square.png +0 -0
  125. package/docs/src/static/img/icon.png +0 -0
  126. package/docs/src/static/img/logo-192x192.png +0 -0
  127. package/docs/src/static/img/logo-512x512.png +0 -0
  128. package/docs/src/static/img/logos/angular.png +0 -0
  129. package/docs/src/static/img/logos/django.png +0 -0
  130. package/docs/src/static/img/logos/golang.png +0 -0
  131. package/docs/src/static/img/logos/handlebars.png +0 -0
  132. package/docs/src/static/img/logos/jinja.png +0 -0
  133. package/docs/src/static/img/logos/mustache.png +0 -0
  134. package/docs/src/static/img/logos/nunjucks.png +0 -0
  135. package/docs/src/static/img/logos/twig.png +0 -0
  136. package/docs/src/static/img/old_demo.gif +0 -0
  137. package/docs/src/static/img/style.css +122 -0
  138. package/docs/src/static/js/animate.js +69 -0
  139. package/docs/src/static/js/editor.js +171 -0
  140. package/docs/src/static/js/hamburger.js +19 -0
  141. package/docs/src/static/js/modal.js +47 -0
  142. package/docs/src/static/js/worker.js +142 -0
  143. package/docs/src/static/py/EditorConfig-99-py3-none-any.whl +0 -0
  144. package/docs/src/static/py/PyYAML-99-py3-none-any.whl +0 -0
  145. package/docs/src/static/py/click-99-py3-none-any.whl +0 -0
  146. package/docs/src/static/py/colorama-99-py3-none-any.whl +0 -0
  147. package/docs/src/static/py/cssbeautifier-99-py3-none-any.whl +0 -0
  148. package/docs/src/static/py/djlint-99-py3-none-any.whl +0 -0
  149. package/docs/src/static/py/html_tag_names-99-py3-none-any.whl +0 -0
  150. package/docs/src/static/py/html_void_elements-99-py3-none-any.whl +0 -0
  151. package/docs/src/static/py/jsbeautifier-99-py3-none-any.whl +0 -0
  152. package/docs/src/static/py/json5-99-py3-none-any.whl +0 -0
  153. package/docs/src/static/py/pathspec-99-py3-none-any.whl +0 -0
  154. package/docs/src/static/py/regex-2023.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl +0 -0
  155. package/docs/src/static/py/six-1.16.0-py2.py3-none-any.whl +0 -0
  156. package/docs/src/static/py/tomli-2.0.1-py3-none-any.whl +0 -0
  157. package/docs/src/static/py/tqdm-4.65.0-py3-none-any.whl +0 -0
  158. package/icon.xcf +0 -0
  159. package/package.json +4 -33
  160. package/poetry.lock +835 -0
  161. package/pyproject.toml +100 -0
  162. package/renovate.json +44 -0
  163. package/scripts/updateVersion.js +16 -0
  164. package/src/djlint/__init__.py +451 -0
  165. package/src/djlint/__main__.py +4 -0
  166. package/src/djlint/formatter/__init__.py +1 -0
  167. package/src/djlint/formatter/attributes.py +212 -0
  168. package/src/djlint/formatter/compress.py +64 -0
  169. package/src/djlint/formatter/condense.py +221 -0
  170. package/src/djlint/formatter/css.py +60 -0
  171. package/src/djlint/formatter/expand.py +111 -0
  172. package/src/djlint/formatter/indent.py +418 -0
  173. package/src/djlint/formatter/js.py +58 -0
  174. package/src/djlint/helpers.py +321 -0
  175. package/src/djlint/lint.py +128 -0
  176. package/src/djlint/output.py +220 -0
  177. package/src/djlint/reformat.py +63 -0
  178. package/src/djlint/rules/H025.py +65 -0
  179. package/src/djlint/rules.yaml +279 -0
  180. package/src/djlint/settings.py +969 -0
  181. package/src/djlint/src.py +91 -0
  182. package/tests/__init__.py +0 -0
  183. package/tests/conftest.py +239 -0
  184. package/tests/test_cli.py +71 -0
  185. package/tests/test_config/__init__.py +0 -0
  186. package/tests/test_config/test_blank_line_after_tag.py +135 -0
  187. package/tests/test_config/test_blank_line_before_tag.py +141 -0
  188. package/tests/test_config/test_close_void_tags.py +31 -0
  189. package/tests/test_config/test_custom_blocks.py +56 -0
  190. package/tests/test_config/test_custom_html.py +45 -0
  191. package/tests/test_config/test_djlintrc/.djlintrc +38 -0
  192. package/tests/test_config/test_djlintrc/__init__.py +0 -0
  193. package/tests/test_config/test_djlintrc/test_config.py +44 -0
  194. package/tests/test_config/test_djlintrc_custom/.djlint-cust +38 -0
  195. package/tests/test_config/test_djlintrc_custom/.djlintrc +2 -0
  196. package/tests/test_config/test_djlintrc_custom/__init__.py +0 -0
  197. package/tests/test_config/test_djlintrc_custom/test_config.py +48 -0
  198. package/tests/test_config/test_excludes/__init__.py +0 -0
  199. package/tests/test_config/test_excludes/excluded.html +1 -0
  200. package/tests/test_config/test_excludes/foo/excluded.html +1 -0
  201. package/tests/test_config/test_excludes/html.html +1 -0
  202. package/tests/test_config/test_excludes/pyproject.toml +3 -0
  203. package/tests/test_config/test_excludes/test_config.py +30 -0
  204. package/tests/test_config/test_extension/__init__.py +0 -0
  205. package/tests/test_config/test_extension/html.test +1 -0
  206. package/tests/test_config/test_extension/pyproject.toml +3 -0
  207. package/tests/test_config/test_extension/test_config.py +27 -0
  208. package/tests/test_config/test_files/.djlintrc_global +9 -0
  209. package/tests/test_config/test_files/test.html +3 -0
  210. package/tests/test_config/test_files/test_config.py +123 -0
  211. package/tests/test_config/test_files/test_two.html +1 -0
  212. package/tests/test_config/test_format_attribute_template_tags.py +280 -0
  213. package/tests/test_config/test_format_css.py +197 -0
  214. package/tests/test_config/test_format_js.py +220 -0
  215. package/tests/test_config/test_gitignore/__init__.py +0 -0
  216. package/tests/test_config/test_gitignore/html_one.html +1 -0
  217. package/tests/test_config/test_gitignore/html_two.html +1 -0
  218. package/tests/test_config/test_gitignore/test_config.py +142 -0
  219. package/tests/test_config/test_ignore/__init__.py +0 -0
  220. package/tests/test_config/test_ignore/html.html +1 -0
  221. package/tests/test_config/test_ignore/html_two.html +12 -0
  222. package/tests/test_config/test_ignore/pyproject.toml +3 -0
  223. package/tests/test_config/test_ignore/test_config.py +32 -0
  224. package/tests/test_config/test_ignore_blocks.py +45 -0
  225. package/tests/test_config/test_ignore_case.py +39 -0
  226. package/tests/test_config/test_indent.py +63 -0
  227. package/tests/test_config/test_linter_output_format/__init__.py +0 -0
  228. package/tests/test_config/test_linter_output_format/html-one.html +1 -0
  229. package/tests/test_config/test_linter_output_format/html-two.html +1 -0
  230. package/tests/test_config/test_linter_output_format/pyproject.toml +3 -0
  231. package/tests/test_config/test_linter_output_format/test_config.py +34 -0
  232. package/tests/test_config/test_max_attribute_length.py +100 -0
  233. package/tests/test_config/test_max_line_length.py +94 -0
  234. package/tests/test_config/test_per_file_ignores/__init__.py +0 -0
  235. package/tests/test_config/test_per_file_ignores/html.html +2 -0
  236. package/tests/test_config/test_per_file_ignores/pyproject.toml +2 -0
  237. package/tests/test_config/test_per_file_ignores/test_config.py +25 -0
  238. package/tests/test_config/test_pragmas/__init__.py +0 -0
  239. package/tests/test_config/test_pragmas/html_five.html +2 -0
  240. package/tests/test_config/test_pragmas/html_four.html +5 -0
  241. package/tests/test_config/test_pragmas/html_one.html +1 -0
  242. package/tests/test_config/test_pragmas/html_six.html +2 -0
  243. package/tests/test_config/test_pragmas/html_three.html +4 -0
  244. package/tests/test_config/test_pragmas/html_two.html +2 -0
  245. package/tests/test_config/test_pragmas/pyproject.toml +3 -0
  246. package/tests/test_config/test_pragmas/test_config.py +142 -0
  247. package/tests/test_config/test_preserve_blank_lines.py +109 -0
  248. package/tests/test_config/test_preserve_leading_space.py +159 -0
  249. package/tests/test_config/test_profile/__init__.py +0 -0
  250. package/tests/test_config/test_profile/html.html +2 -0
  251. package/tests/test_config/test_profile/pyproject.toml +3 -0
  252. package/tests/test_config/test_profile/test_config.py +64 -0
  253. package/tests/test_config/test_pyproject/__init__.py +0 -0
  254. package/tests/test_config/test_pyproject/blank.html +0 -0
  255. package/tests/test_config/test_pyproject/pyproject.toml +36 -0
  256. package/tests/test_config/test_pyproject/test_config.py +44 -0
  257. package/tests/test_django/__init__.py +0 -0
  258. package/tests/test_django/test_asset.py +32 -0
  259. package/tests/test_django/test_autoescape.py +25 -0
  260. package/tests/test_django/test_block.py +29 -0
  261. package/tests/test_django/test_blocktrans.py +236 -0
  262. package/tests/test_django/test_blocktrans_trimmed.py +283 -0
  263. package/tests/test_django/test_comments.py +164 -0
  264. package/tests/test_django/test_filter.py +30 -0
  265. package/tests/test_django/test_for.py +34 -0
  266. package/tests/test_django/test_if.py +34 -0
  267. package/tests/test_django/test_ifchanged.py +37 -0
  268. package/tests/test_django/test_include.py +24 -0
  269. package/tests/test_django/test_load.py +24 -0
  270. package/tests/test_django/test_quoted.py +34 -0
  271. package/tests/test_django/test_spaceless.py +30 -0
  272. package/tests/test_django/test_tag_spaces.py +35 -0
  273. package/tests/test_django/test_templatetag.py +40 -0
  274. package/tests/test_django/test_verbatim.py +24 -0
  275. package/tests/test_django/test_with.py +32 -0
  276. package/tests/test_djlint/-.html +1 -0
  277. package/tests/test_djlint/__init__.py +0 -0
  278. package/tests/test_djlint/bad.html +6 -0
  279. package/tests/test_djlint/bad.html.dj +23 -0
  280. package/tests/test_djlint/bad.html.dj2 +2 -0
  281. package/tests/test_djlint/multiple_files/a/a.html +1 -0
  282. package/tests/test_djlint/multiple_files/b/b1.html +1 -0
  283. package/tests/test_djlint/multiple_files/b/b2.html +1 -0
  284. package/tests/test_djlint/test_djlint.py +242 -0
  285. package/tests/test_golang/__init__.py +0 -0
  286. package/tests/test_golang/test_if.py +24 -0
  287. package/tests/test_golang/test_range.py +24 -0
  288. package/tests/test_handlebars/__init__.py +0 -0
  289. package/tests/test_handlebars/test_each.py +34 -0
  290. package/tests/test_handlebars/test_else.py +24 -0
  291. package/tests/test_handlebars/test_with.py +24 -0
  292. package/tests/test_html/__init__.py +0 -0
  293. package/tests/test_html/test_alpinejs.py +65 -0
  294. package/tests/test_html/test_attributes.py +935 -0
  295. package/tests/test_html/test_aurelia.py +24 -0
  296. package/tests/test_html/test_basics.py +905 -0
  297. package/tests/test_html/test_bracket_same_line.py +177 -0
  298. package/tests/test_html/test_case.py +81 -0
  299. package/tests/test_html/test_cdata.py +34 -0
  300. package/tests/test_html/test_comments.py +333 -0
  301. package/tests/test_html/test_css.py +193 -0
  302. package/tests/test_html/test_doctype_declarations.py +202 -0
  303. package/tests/test_html/test_ignored.py +193 -0
  304. package/tests/test_html/test_interpolation.py +56 -0
  305. package/tests/test_html/test_line_break_after_multiline_tag.py +95 -0
  306. package/tests/test_html/test_next_line_empty.py +53 -0
  307. package/tests/test_html/test_selfclosing.py +55 -0
  308. package/tests/test_html/test_single_attribute_per_line.py +87 -0
  309. package/tests/test_html/test_srcset.py +43 -0
  310. package/tests/test_html/test_svg.py +104 -0
  311. package/tests/test_html/test_symbol_entities.py +34 -0
  312. package/tests/test_html/test_tag_code.py +24 -0
  313. package/tests/test_html/test_tag_dd.py +24 -0
  314. package/tests/test_html/test_tag_details_summary.py +24 -0
  315. package/tests/test_html/test_tag_dt.py +24 -0
  316. package/tests/test_html/test_tag_fig_caption.py +29 -0
  317. package/tests/test_html/test_tag_hr.py +29 -0
  318. package/tests/test_html/test_tag_picture.py +32 -0
  319. package/tests/test_html/test_tag_pre.py +45 -0
  320. package/tests/test_html/test_tag_script.py +516 -0
  321. package/tests/test_html/test_tag_small.py +24 -0
  322. package/tests/test_html/test_tag_span.py +119 -0
  323. package/tests/test_html/test_tag_textarea.py +82 -0
  324. package/tests/test_html/test_tags.py +842 -0
  325. package/tests/test_html/test_text.py +34 -0
  326. package/tests/test_html/test_whitespace.py +477 -0
  327. package/tests/test_html/test_yaml.py +156 -0
  328. package/tests/test_jinja/__init__.py +0 -0
  329. package/tests/test_jinja/test_call.py +34 -0
  330. package/tests/test_jinja/test_parenthesis.py +24 -0
  331. package/tests/test_linter/__init__.py +0 -0
  332. package/tests/test_linter/test_custom_rules/.djlint_rules.yaml +6 -0
  333. package/tests/test_linter/test_custom_rules/__init__.py +0 -0
  334. package/tests/test_linter/test_custom_rules/html.html +1 -0
  335. package/tests/test_linter/test_custom_rules/pyproject.toml +1 -0
  336. package/tests/test_linter/test_custom_rules/test_linter.py +29 -0
  337. package/tests/test_linter/test_custom_rules_bad/.djlint_rules.yaml +24 -0
  338. package/tests/test_linter/test_custom_rules_bad/__init__.py +0 -0
  339. package/tests/test_linter/test_custom_rules_bad/html.html +1 -0
  340. package/tests/test_linter/test_custom_rules_bad/pyproject.toml +1 -0
  341. package/tests/test_linter/test_custom_rules_bad/test_linter.py +29 -0
  342. package/tests/test_linter/test_django_linter.py +476 -0
  343. package/tests/test_linter/test_h005.py +45 -0
  344. package/tests/test_linter/test_h006.py +81 -0
  345. package/tests/test_linter/test_h007.py +45 -0
  346. package/tests/test_linter/test_h008.py +60 -0
  347. package/tests/test_linter/test_h009.py +45 -0
  348. package/tests/test_linter/test_h010.py +44 -0
  349. package/tests/test_linter/test_h037.py +150 -0
  350. package/tests/test_linter/test_ignore_rules.py +45 -0
  351. package/tests/test_linter/test_jinja_linter.py +227 -0
  352. package/tests/test_linter/test_linter.py +691 -0
  353. package/tests/test_linter/test_nunjucks_linter.py +59 -0
  354. package/tests/test_linter/test_python_module_rules/.djlint_rules.yaml +4 -0
  355. package/tests/test_linter/test_python_module_rules/__init__.py +0 -0
  356. package/tests/test_linter/test_python_module_rules/html_bad.html +3 -0
  357. package/tests/test_linter/test_python_module_rules/html_ok.html +3 -0
  358. package/tests/test_linter/test_python_module_rules/my_module.py +32 -0
  359. package/tests/test_linter/test_python_module_rules/pyproject.toml +1 -0
  360. package/tests/test_linter/test_python_module_rules/test_linter.py +26 -0
  361. package/tests/test_nunjucks/__init__.py +0 -0
  362. package/tests/test_nunjucks/test_functions.py +94 -0
  363. package/tests/test_nunjucks/test_macros.py +41 -0
  364. package/tests/test_nunjucks/test_set.py +206 -0
  365. package/tests/test_nunjucks/test_spaceless.py +24 -0
  366. package/tests/test_twig/__init__.py +0 -0
  367. package/tests/test_twig/test_comments.py +51 -0
  368. package/tox.ini +48 -0
@@ -0,0 +1,193 @@
1
+ """Test css.
2
+
3
+ poetry run pytest tests/test_html/test_css.py
4
+ """
5
+ import pytest
6
+
7
+ from src.djlint.reformat import formatter
8
+ from tests.conftest import printer
9
+
10
+ test_data = [
11
+ pytest.param(
12
+ ("<style></style>\n"),
13
+ ("<style></style>\n"),
14
+ id="empty",
15
+ ),
16
+ pytest.param(
17
+ (
18
+ '<style type="text/less">\n'
19
+ " @nice-blue: #5B83AD;\n"
20
+ " @light-blue: @nice-blue + #111;\n"
21
+ " #header {\n"
22
+ " color: @light-blue;\n"
23
+ " }\n"
24
+ "</style>\n"
25
+ '<style lang="less">\n'
26
+ " @nice-blue: #5B83AD;\n"
27
+ " @light-blue: @nice-blue + #111;\n"
28
+ " #header {\n"
29
+ " color: @light-blue;\n"
30
+ " }\n"
31
+ "</style>\n"
32
+ ),
33
+ (
34
+ '<style type="text/less">\n'
35
+ " @nice-blue: #5B83AD;\n"
36
+ " @light-blue: @nice-blue + #111;\n"
37
+ " #header {\n"
38
+ " color: @light-blue;\n"
39
+ " }\n"
40
+ "</style>\n"
41
+ '<style lang="less">\n'
42
+ " @nice-blue: #5B83AD;\n"
43
+ " @light-blue: @nice-blue + #111;\n"
44
+ " #header {\n"
45
+ " color: @light-blue;\n"
46
+ " }\n"
47
+ "</style>\n"
48
+ ),
49
+ id="less",
50
+ ),
51
+ pytest.param(
52
+ (
53
+ '<style type="text/css">\n'
54
+ " body { background: navy; color: yellow; }\n"
55
+ "</style>\n"
56
+ '<style lang="postcss">\n'
57
+ " body { background: navy; color: yellow; }\n"
58
+ "</style>\n"
59
+ ),
60
+ (
61
+ '<style type="text/css">body { background: navy; color: yellow; }</style>\n'
62
+ '<style lang="postcss">body { background: navy; color: yellow; }</style>\n'
63
+ ),
64
+ id="postcss",
65
+ ),
66
+ pytest.param(
67
+ (
68
+ '<style type="text/x-scss">\n'
69
+ " $font-stack: Helvetica, sans-serif;\n"
70
+ " $primary-color: #333;\n"
71
+ " body {\n"
72
+ " font: 100% $font-stack;\n"
73
+ " color: $primary-color;\n"
74
+ " }\n"
75
+ "</style>\n"
76
+ '<style lang="scss">\n'
77
+ " $font-stack: Helvetica, sans-serif;\n"
78
+ " $primary-color: #333;\n"
79
+ " body {\n"
80
+ " font: 100% $font-stack;\n"
81
+ " color: $primary-color;\n"
82
+ " }\n"
83
+ "</style>\n"
84
+ '<style lang="scss">\n'
85
+ ".someElement {\n"
86
+ " @include bp-medium {\n"
87
+ " display: flex;\n"
88
+ " }\n"
89
+ "\n"
90
+ " @include bp-large {\n"
91
+ " margin-top: 10px;\n"
92
+ " margin-bottom: 10px;\n"
93
+ " }\n"
94
+ "}\n"
95
+ "</style>\n"
96
+ ),
97
+ (
98
+ '<style type="text/x-scss">\n'
99
+ " $font-stack: Helvetica, sans-serif;\n"
100
+ " $primary-color: #333;\n"
101
+ " body {\n"
102
+ " font: 100% $font-stack;\n"
103
+ " color: $primary-color;\n"
104
+ " }\n"
105
+ "</style>\n"
106
+ '<style lang="scss">\n'
107
+ " $font-stack: Helvetica, sans-serif;\n"
108
+ " $primary-color: #333;\n"
109
+ " body {\n"
110
+ " font: 100% $font-stack;\n"
111
+ " color: $primary-color;\n"
112
+ " }\n"
113
+ "</style>\n"
114
+ '<style lang="scss">\n'
115
+ ".someElement {\n"
116
+ " @include bp-medium {\n"
117
+ " display: flex;\n"
118
+ " }\n"
119
+ "\n"
120
+ " @include bp-large {\n"
121
+ " margin-top: 10px;\n"
122
+ " margin-bottom: 10px;\n"
123
+ " }\n"
124
+ "}\n"
125
+ "</style>\n"
126
+ ),
127
+ id="scss",
128
+ ),
129
+ pytest.param(
130
+ (
131
+ "<!DOCTYPE html>\n"
132
+ "<html>\n"
133
+ " <head>\n"
134
+ " <title>Sample styled page</title>\n"
135
+ " <style>a { color: red; }</style>\n"
136
+ " <style>\n"
137
+ " body { background: navy; color: yellow; }\n"
138
+ " </style>\n"
139
+ " </head>\n"
140
+ " <body>\n"
141
+ " <h1>Sample styled page</h1>\n"
142
+ " <p>This page is just a demo.</p>\n"
143
+ " </body>\n"
144
+ "</html>\n"
145
+ ),
146
+ (
147
+ "<!DOCTYPE html>\n"
148
+ "<html>\n"
149
+ " <head>\n"
150
+ " <title>Sample styled page</title>\n"
151
+ " <style>a { color: red; }</style>\n"
152
+ " <style>body { background: navy; color: yellow; }</style>\n"
153
+ " </head>\n"
154
+ " <body>\n"
155
+ " <h1>Sample styled page</h1>\n"
156
+ " <p>This page is just a demo.</p>\n"
157
+ " </body>\n"
158
+ "</html>\n"
159
+ ),
160
+ id="simple",
161
+ ),
162
+ pytest.param(
163
+ (
164
+ "<style>a { color: red; }</style>\n"
165
+ "<style>\n"
166
+ " h1 {\n"
167
+ " font-size: 120%;\n"
168
+ " font-family: Verdana, Arial, Helvetica, sans-serif;\n"
169
+ " color: #333366;\n"
170
+ " }\n"
171
+ "</style>\n"
172
+ ),
173
+ (
174
+ "<style>a { color: red; }</style>\n"
175
+ "<style>\n"
176
+ " h1 {\n"
177
+ " font-size: 120%;\n"
178
+ " font-family: Verdana, Arial, Helvetica, sans-serif;\n"
179
+ " color: #333366;\n"
180
+ " }\n"
181
+ "</style>\n"
182
+ ),
183
+ id="single_style",
184
+ ),
185
+ ]
186
+
187
+
188
+ @pytest.mark.parametrize(("source", "expected"), test_data)
189
+ def test_base(source, expected, basic_config):
190
+ output = formatter(basic_config, source)
191
+
192
+ printer(expected, source, output)
193
+ assert expected == output
@@ -0,0 +1,202 @@
1
+ """Tests for doctype.
2
+
3
+ poetry run pytest tests/test_html/test_doctype_declarations.py
4
+ """
5
+ import pytest
6
+
7
+ from src.djlint.reformat import formatter
8
+ from tests.conftest import printer
9
+
10
+ test_data = [
11
+ pytest.param(
12
+ ("<!DocType htMl>"),
13
+ ("<!DOCTYPE htMl>\n"),
14
+ id="case",
15
+ ),
16
+ pytest.param(
17
+ ("<!DocType htMl >"),
18
+ ("<!DOCTYPE htMl>\n"),
19
+ id="case_2",
20
+ ),
21
+ pytest.param(
22
+ (
23
+ '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"\n'
24
+ ' "http://www.w3.org/TR/html4/frameset.dtd">\n'
25
+ "<html>\n"
26
+ " <head>\n"
27
+ " <title>An HTML standard template</title>\n"
28
+ ' <meta charset="utf-8" />\n'
29
+ " </head>\n"
30
+ " <body>\n"
31
+ " <p>… Your HTML content here …</p>\n"
32
+ " </body>\n"
33
+ "</html>\n"
34
+ ),
35
+ (
36
+ '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">\n'
37
+ "<html>\n"
38
+ " <head>\n"
39
+ " <title>An HTML standard template</title>\n"
40
+ ' <meta charset="utf-8" />\n'
41
+ " </head>\n"
42
+ " <body>\n"
43
+ " <p>… Your HTML content here …</p>\n"
44
+ " </body>\n"
45
+ "</html>\n"
46
+ ),
47
+ id="html4_01_frameset",
48
+ ),
49
+ pytest.param(
50
+ (
51
+ '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"\n'
52
+ ' "http://www.w3.org/TR/html4/strict.dtd">\n'
53
+ "<html>\n"
54
+ " <head>\n"
55
+ " <title>An HTML standard template</title>\n"
56
+ ' <meta charset="utf-8" />\n'
57
+ " </head>\n"
58
+ " <body>\n"
59
+ " <p>… Your HTML content here …</p>\n"
60
+ " </body>\n"
61
+ "</html>\n"
62
+ ),
63
+ (
64
+ '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">\n'
65
+ "<html>\n"
66
+ " <head>\n"
67
+ " <title>An HTML standard template</title>\n"
68
+ ' <meta charset="utf-8" />\n'
69
+ " </head>\n"
70
+ " <body>\n"
71
+ " <p>… Your HTML content here …</p>\n"
72
+ " </body>\n"
73
+ "</html>\n"
74
+ ),
75
+ id="html4_01_strict",
76
+ ),
77
+ pytest.param(
78
+ (
79
+ '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"\n'
80
+ ' "http://www.w3.org/TR/html4/loose.dtd">\n'
81
+ "<html>\n"
82
+ " <head>\n"
83
+ " <title>An HTML standard template</title>\n"
84
+ ' <meta charset="utf-8" />\n'
85
+ " </head>\n"
86
+ " <body>\n"
87
+ " <p>… Your HTML content here …</p>\n"
88
+ " </body>\n"
89
+ "</html>\n"
90
+ ),
91
+ (
92
+ '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\n'
93
+ "<html>\n"
94
+ " <head>\n"
95
+ " <title>An HTML standard template</title>\n"
96
+ ' <meta charset="utf-8" />\n'
97
+ " </head>\n"
98
+ " <body>\n"
99
+ " <p>… Your HTML content here …</p>\n"
100
+ " </body>\n"
101
+ "</html>\n"
102
+ ),
103
+ id="html4_01_transitional",
104
+ ),
105
+ pytest.param(
106
+ (
107
+ "<!DOCTYPE html>\n"
108
+ "<html>\n"
109
+ " <head>\n"
110
+ " <title>An HTML standard template</title>\n"
111
+ ' <meta charset="utf-8" />\n'
112
+ " </head>\n"
113
+ " <body>\n"
114
+ " <p>… Your HTML content here …</p>\n"
115
+ " </body>\n"
116
+ "</html>\n"
117
+ ),
118
+ (
119
+ "<!DOCTYPE html>\n"
120
+ "<html>\n"
121
+ " <head>\n"
122
+ " <title>An HTML standard template</title>\n"
123
+ ' <meta charset="utf-8" />\n'
124
+ " </head>\n"
125
+ " <body>\n"
126
+ " <p>… Your HTML content here …</p>\n"
127
+ " </body>\n"
128
+ "</html>\n"
129
+ ),
130
+ id="html5",
131
+ ),
132
+ pytest.param(
133
+ (
134
+ '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n'
135
+ '<html xmlns="http://www.w3.org/1999/xhtml">\n'
136
+ " <head>\n"
137
+ ' <meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />\n'
138
+ " <title>XHTML markup</title>\n"
139
+ " </head>\n"
140
+ ' <body style="background-color:#ffffcc; color:#008800">\n'
141
+ " <br />\n"
142
+ ' <h2 align="center">Sample XHTML page</h2>\n'
143
+ " <br />\n"
144
+ ' <div align="center">\n'
145
+ ' <img src="../images/bee3.jpg" width="400" height="250" alt="Beep" vspace="20" />\n'
146
+ " </div>\n"
147
+ ' <p align="center" style="font-size:17px">Bar Foo,<br />\n'
148
+ " Foo,<br />\n"
149
+ " Bar<br />\n"
150
+ " Foo</p>\n"
151
+ ' <p align="center"><em>String</em></p>\n'
152
+ " <br />\n"
153
+ " <hr />\n"
154
+ " </body>\n"
155
+ "</html>\n"
156
+ ),
157
+ (
158
+ '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n'
159
+ '<html xmlns="http://www.w3.org/1999/xhtml">\n'
160
+ " <head>\n"
161
+ ' <meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />\n'
162
+ " <title>XHTML markup</title>\n"
163
+ " </head>\n"
164
+ ' <body style="background-color:#ffffcc; color:#008800">\n'
165
+ " <br />\n"
166
+ ' <h2 align="center">Sample XHTML page</h2>\n'
167
+ " <br />\n"
168
+ ' <div align="center">\n'
169
+ ' <img src="../images/bee3.jpg"\n'
170
+ ' width="400"\n'
171
+ ' height="250"\n'
172
+ ' alt="Beep"\n'
173
+ ' vspace="20" />\n'
174
+ " </div>\n"
175
+ ' <p align="center" style="font-size:17px">\n'
176
+ " Bar Foo,\n"
177
+ " <br />\n"
178
+ " Foo,\n"
179
+ " <br />\n"
180
+ " Bar\n"
181
+ " <br />\n"
182
+ " Foo\n"
183
+ " </p>\n"
184
+ ' <p align="center">\n'
185
+ " <em>String</em>\n"
186
+ " </p>\n"
187
+ " <br />\n"
188
+ " <hr />\n"
189
+ " </body>\n"
190
+ "</html>\n"
191
+ ),
192
+ id="xhtml1_1",
193
+ ),
194
+ ]
195
+
196
+
197
+ @pytest.mark.parametrize(("source", "expected"), test_data)
198
+ def test_base(source, expected, basic_config):
199
+ output = formatter(basic_config, source)
200
+
201
+ printer(expected, source, output)
202
+ assert expected == output
@@ -0,0 +1,193 @@
1
+ """Test ignored content.
2
+
3
+ poetry run pytest tests/test_html/test_ignored.py
4
+ """
5
+ import pytest
6
+
7
+ from src.djlint.reformat import formatter
8
+ from tests.conftest import printer
9
+
10
+ test_data = [
11
+ pytest.param(
12
+ ("<!-- <span> -->\n" "<div><p><span></span></p></div>\n" "<!-- <div> -->\n"),
13
+ (
14
+ "<!-- <span> -->\n"
15
+ "<div>\n"
16
+ " <p>\n"
17
+ " <span></span>\n"
18
+ " </p>\n"
19
+ "</div>\n"
20
+ "<!-- <div> -->\n"
21
+ ),
22
+ id="ignored_1",
23
+ ),
24
+ # check custom ignore tag {# djlint:off #} {# djlint:on #}
25
+ pytest.param(
26
+ (
27
+ "<!-- djlint:off -->\n"
28
+ "<div><p><span></span></p></div>\n"
29
+ "<!-- djlint:on -->\n"
30
+ "{# djlint:off #}\n"
31
+ "<div><p><span></span></p></div>\n"
32
+ "{# djlint:on #}\n"
33
+ "{% comment %} djlint:off {% endcomment %}\n"
34
+ "<div><p><span></span></p></div>\n"
35
+ "{% comment %} djlint:on {% endcomment %}\n"
36
+ "{{ /* djlint:off */ }}\n"
37
+ "<div><p><span></span></p></div>\n"
38
+ "{{ /* djlint:on */ }}\n"
39
+ "{{!-- djlint:off --}}\n"
40
+ "<div><p><span></span></p></div>\n"
41
+ "{{!-- djlint:on --}}\n"
42
+ ),
43
+ (
44
+ "<!-- djlint:off -->\n"
45
+ "<div><p><span></span></p></div>\n"
46
+ "<!-- djlint:on -->\n"
47
+ "{# djlint:off #}\n"
48
+ "<div><p><span></span></p></div>\n"
49
+ "{# djlint:on #}\n"
50
+ "{% comment %} djlint:off {% endcomment %}\n"
51
+ "<div><p><span></span></p></div>\n"
52
+ "{% comment %} djlint:on {% endcomment %}\n"
53
+ "{{ /* djlint:off */ }}\n"
54
+ "<div><p><span></span></p></div>\n"
55
+ "{{ /* djlint:on */ }}\n"
56
+ "{{!-- djlint:off --}}\n"
57
+ "<div><p><span></span></p></div>\n"
58
+ "{{!-- djlint:on --}}\n"
59
+ ),
60
+ id="ignored_2",
61
+ ),
62
+ pytest.param(
63
+ (
64
+ '{# djlint: off #}<meta name="description" content="{% block meta_content %}Alle vogelkijkhutten van Nederland{% endblock %}">{# djlint:on #}'
65
+ ),
66
+ (
67
+ '{# djlint: off #}<meta name="description" content="{% block meta_content %}Alle vogelkijkhutten van Nederland{% endblock %}">{# djlint:on #}\n'
68
+ ),
69
+ id="ignored_3",
70
+ ),
71
+ pytest.param(
72
+ (
73
+ "{% comment %}djlint:off{% endcomment %}<div><img><p></p></div>{% comment %}djlint:on{% endcomment %}<div><img></div>{% comment %}djlint:off{% endcomment %}<div><img><p></p></div>"
74
+ ),
75
+ (
76
+ "{% comment %}djlint:off{% endcomment %}<div><img><p></p></div>{% comment %}djlint:on{% endcomment %}\n"
77
+ "<div>\n"
78
+ " <img>\n"
79
+ "</div>\n"
80
+ "{% comment %}djlint:off{% endcomment %}<div><img><p></p></div>\n"
81
+ ),
82
+ id="{% comment don't require an on block",
83
+ ),
84
+ pytest.param(
85
+ (
86
+ "{# djlint: off #}<div><img><p></p></div>{# djlint: on #}<div><img></div>{# djlint: off #}<div><img><p></p></div>"
87
+ ),
88
+ (
89
+ "{# djlint: off #}<div><img><p></p></div>{# djlint: on #}\n"
90
+ "<div>\n"
91
+ " <img>\n"
92
+ "</div>\n"
93
+ "{# djlint: off #}<div><img><p></p></div>\n"
94
+ ),
95
+ id="{# don't require an on block",
96
+ ),
97
+ pytest.param(
98
+ (
99
+ "{{!-- djlint:off--}}<div><img><p></p></div>{{!-- djlint:on--}}<div><img></div>{{!-- djlint:off--}}<div><img><p></p></div>"
100
+ ),
101
+ (
102
+ "{{!-- djlint:off--}}<div><img><p></p></div>{{!-- djlint:on--}}\n"
103
+ "<div>\n"
104
+ " <img>\n"
105
+ "</div>\n"
106
+ "{{!-- djlint:off--}}<div><img><p></p></div>\n"
107
+ ),
108
+ id="{{!-- don't require an on block",
109
+ ),
110
+ pytest.param(
111
+ (
112
+ "{{ /* djlint:off */ }}<div><img><p></p></div>{{ /* djlint:on */ }}<div><img></div>{{ /* djlint:off */ }}<div><img><p></p></div>"
113
+ ),
114
+ (
115
+ "{{ /* djlint:off */ }}<div><img><p></p></div>{{ /* djlint:on */ }}\n"
116
+ "<div>\n"
117
+ " <img>\n"
118
+ "</div>\n"
119
+ "{{ /* djlint:off */ }}<div><img><p></p></div>\n"
120
+ ),
121
+ id="{{ /* don't require an on block",
122
+ ),
123
+ pytest.param(
124
+ ("<script>\n" " <div><p><span></span></p></div>\n" "</script>\n"),
125
+ ("<script>\n" " <div><p><span></span></p></div>\n" "</script>\n"),
126
+ id="script",
127
+ ),
128
+ pytest.param(
129
+ (
130
+ "<html>\n"
131
+ " <head>\n"
132
+ ' <link href="{% static \'foo/bar.css\' %}" rel="stylesheet"/>\n'
133
+ " <!--JS-->\n"
134
+ " <script src=\"{% static 'foo/bar.js' %}\"></script>\n"
135
+ " </head>\n"
136
+ "</html>\n"
137
+ ),
138
+ (
139
+ "<html>\n"
140
+ " <head>\n"
141
+ ' <link href="{% static \'foo/bar.css\' %}" rel="stylesheet" />\n'
142
+ " <!--JS-->\n"
143
+ " <script src=\"{% static 'foo/bar.js' %}\"></script>\n"
144
+ " </head>\n"
145
+ "</html>\n"
146
+ ),
147
+ id="inline_scripts_links",
148
+ ),
149
+ pytest.param(
150
+ (
151
+ "<style>\n"
152
+ " {# override to fix text all over the place in media upload box #}\n"
153
+ " .k-dropzone .k-upload-status {\n"
154
+ " color: #a1a1a1;\n"
155
+ " }\n"
156
+ "</style>\n"
157
+ ),
158
+ (
159
+ "<style>\n"
160
+ " {# override to fix text all over the place in media upload box #}\n"
161
+ " .k-dropzone .k-upload-status {\n"
162
+ " color: #a1a1a1;\n"
163
+ " }\n"
164
+ "</style>\n"
165
+ ),
166
+ id="style_tag_1",
167
+ ),
168
+ pytest.param(
169
+ (
170
+ "<style>\n"
171
+ " .k-dropzone .k-upload-status {\n"
172
+ " color: #a1a1a1;\n"
173
+ " }\n"
174
+ "</style>\n"
175
+ ),
176
+ (
177
+ "<style>\n"
178
+ " .k-dropzone .k-upload-status {\n"
179
+ " color: #a1a1a1;\n"
180
+ " }\n"
181
+ "</style>\n"
182
+ ),
183
+ id="style_tag_2",
184
+ ),
185
+ ]
186
+
187
+
188
+ @pytest.mark.parametrize(("source", "expected"), test_data)
189
+ def test_base(source, expected, basic_config):
190
+ output = formatter(basic_config, source)
191
+
192
+ printer(expected, source, output)
193
+ assert expected == output
@@ -0,0 +1,56 @@
1
+ """Test interpolation.
2
+
3
+ poetry run pytest tests/test_html/test_interpolation.py
4
+ """
5
+ import pytest
6
+
7
+ from src.djlint.reformat import formatter
8
+ from tests.conftest import printer
9
+
10
+ test_data = [
11
+ pytest.param(
12
+ (
13
+ "<!--interpolations in html should be treated as normal text--><div>Fuga magnam facilis. Voluptatem quaerat porro.{{\n"
14
+ "x => {\n"
15
+ " const hello = 'world'\n"
16
+ " return hello;\n"
17
+ "}\n"
18
+ "}} Magni consectetur in et molestias neque esse voluptatibus voluptas. {{\n"
19
+ "\n"
20
+ "\n"
21
+ " some_variable\n"
22
+ "}} Eum quia nihil nulla esse. Dolorem asperiores vero est error {{\n"
23
+ " preserve\n"
24
+ " invalid\n"
25
+ "\n"
26
+ " interpolation\n"
27
+ "}} reprehenderit voluptates minus {{console.log( short_interpolation )}} nemo.</div>\n"
28
+ ),
29
+ (
30
+ "<!--interpolations in html should be treated as normal text-->\n"
31
+ "<div>\n"
32
+ " Fuga magnam facilis. Voluptatem quaerat porro.{{\n"
33
+ " x => {\n"
34
+ " const hello = 'world'\n"
35
+ " return hello;\n"
36
+ " }\n"
37
+ " }} Magni consectetur in et molestias neque esse voluptatibus voluptas. {{\n"
38
+ " some_variable\n"
39
+ " }} Eum quia nihil nulla esse. Dolorem asperiores vero est error {{\n"
40
+ " preserve\n"
41
+ " invalid\n"
42
+ " interpolation\n"
43
+ " }} reprehenderit voluptates minus {{ console.log(short_interpolation) }} nemo.\n"
44
+ "</div>\n"
45
+ ),
46
+ id="interpolation_in_text",
47
+ ),
48
+ ]
49
+
50
+
51
+ @pytest.mark.parametrize(("source", "expected"), test_data)
52
+ def test_base(source, expected, basic_config):
53
+ output = formatter(basic_config, source)
54
+
55
+ printer(expected, source, output)
56
+ assert expected == output