Skip to content

Commit

Permalink
feat: remove stylelint-config-prettier from stylelint config
Browse files Browse the repository at this point in the history
  • Loading branch information
shijistar committed Feb 18, 2025
1 parent a9da0ba commit 8cb9cc5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @tiny-codes/code-style-all-in-one

## v1.1.3

`2025-02-18`

### Features

- 🛠 remove `stylelint-config-prettier` from `stylelint` config

## v1.1.2

`2025-02-11`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tiny-codes/code-style-all-in-one",
"version": "1.1.2",
"version": "1.1.3",
"description": "Provides popular eslint, prettier, stylelint, commitlint, and prettier configurations, ALL IN ONE",
"keywords": [
"code style guide",
Expand Down
2 changes: 1 addition & 1 deletion stylelint/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/** @type {import('stylelint').Config} */
module.exports = {
extends: ['stylelint-config-standard', 'stylelint-config-css-modules', 'stylelint-config-prettier'],
extends: ['stylelint-config-standard', 'stylelint-config-css-modules'],
plugins: ['stylelint-declaration-block-no-ignored-properties'],
rules: {
'no-descending-specificity': null,
Expand Down

0 comments on commit 8cb9cc5

Please sign in to comment.