chore(release): 1.5.0 [skip ci]

# [1.5.0](https://github.com/Riverside-Healthcare/djLint/compare/v1.4.0...v1.5.0) (2022-07-06)

### Bug Fixes

* **h026:** fixes rule H026 for cases where id/class are part of another string ([611b1fa](611b1fa57a)), closes [#281](https://github.com/Riverside-Healthcare/djLint/issues/281)

### Features

* **npm:** updated npm installer ([4c0cacc](4c0caccdf6)), closes [#192](https://github.com/Riverside-Healthcare/djLint/issues/192)
This commit is contained in:
semantic-release-bot 2022-07-06 18:04:08 +00:00
parent 6946bdcb8d
commit e060c58383
2 changed files with 19 additions and 19 deletions

View file

@ -1,6 +1,6 @@
{
"name": "djlint",
"version": "1.4.0",
"version": "1.5.0",
"description": "HTML Template Linter and Formatter",
"main": "./bin/index.js",
"directories": {
@ -79,21 +79,21 @@
]
},
"xo": {
"space": true,
"prettier": true,
"rules": {
"unicorn/prefer-module": "off",
"no-var": "warn",
"camelcase": "warn",
"unicorn/filename-case":"warn",
"unicorn/no-process-exit":"off"
},
"globals": [
"document",
"window",
"data",
"debounce",
"history"
]
}
"space": true,
"prettier": true,
"rules": {
"unicorn/prefer-module": "off",
"no-var": "warn",
"camelcase": "warn",
"unicorn/filename-case": "warn",
"unicorn/no-process-exit": "off"
},
"globals": [
"document",
"window",
"data",
"debounce",
"history"
]
}
}

View file

@ -7,7 +7,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name="djlint"
version="1.4.0"
version="1.5.0"
description="HTML Template Linter and Formatter"
license="GPL-3.0-or-later"
authors=["Christopher Pickering <cpickering@rhc.net>"]