@ganintegrity/prettier-config
Advanced tools
Comparing version 1.1.0 to 2.0.0
@@ -0,1 +1,14 @@ | ||
# [2.0.0](https://gitlab.com/ganintegrity/prettier-config/compare/v1.1.0...v2.0.0) (2023-12-14) | ||
### Features | ||
* change to es5 ([5ddcf4c](https://gitlab.com/ganintegrity/prettier-config/commit/5ddcf4c84b397219c5e8efffad5bc84532ba4e7d)) | ||
* set the trailing commas to all ([2374da8](https://gitlab.com/ganintegrity/prettier-config/commit/2374da87c04d71c1f06c53c850f4f1c0130e0d5b)) | ||
### BREAKING CHANGES | ||
* This changes the prettier trailing commas prettier rule, updating the eslint-config version and running the lint:fix command or eslint --fix . in the repo will be needed, otherwise the linting will throw errors. | ||
# [1.1.0](https://gitlab.com/ganintegrity/prettier-config/compare/v1.0.5...v1.1.0) (2023-04-11) | ||
@@ -2,0 +15,0 @@ |
{ | ||
"name": "@ganintegrity/prettier-config", | ||
"version": "1.1.0", | ||
"version": "2.0.0", | ||
"description": "prettier config", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -7,4 +7,4 @@ module.exports = { | ||
singleQuote: true, | ||
trailingComma: 'none', | ||
trailingComma: 'es5', | ||
parser: 'typescript' | ||
}; |
6083