Skip to content

Commit

Permalink
Merge branch 'release/5.3.4'
Browse files Browse the repository at this point in the history
* release/5.3.4:
  Bump plug-in version attribute to 5.3.4
  Bump prettier from 3.1.1 to 3.2.5 (#19)
  Bump stylelint from 16.1.0 to 16.2.1 (#18)
  Migrate Husky to v9
  Bump husky from 8.0.3 to 9.0.10 (#17)
  Bump lint-staged from 15.2.0 to 15.2.1 (#13)
  Restore quotes in Sass files per Bootstrap config
  Convert Prettier runtime config to YAML
  Update references to deprecated stylistic rule
  Bump stylelint and stylelint-config-twbs-bootstrap
  Bump lint-staged from 14.0.1 to 15.2.0 (#11)
  Bump prettier from 3.0.3 to 3.1.1 (#10)
  Bump stylelint-config-twbs-bootstrap from 11.0.1 to 12.0.0 (#9)
  Bump @prettier/plugin-xml from 3.2.1 to 3.2.2 (#5)
  Bump stylelint from 15.10.3 to 15.11.0 (#4)
  Bump actions/setup-node from 3 to 4 (#3)
  • Loading branch information
infotexture committed Feb 7, 2024
2 parents cf8f9d1 + 16908bb commit 736d6b1
Show file tree
Hide file tree
Showing 7 changed files with 733 additions and 870 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
ref: ${{ github.ref }}

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'npm'
Expand Down
18 changes: 0 additions & 18 deletions .prettierrc.json

This file was deleted.

29 changes: 29 additions & 0 deletions .prettierrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Prettier Configuration File

# https://prettier.io/docs/en/configuration.html

arrowParens: avoid
bracketSpacing: false
endOfLine: lf
htmlWhitespaceSensitivity: css
printWidth: 120
proseWrap: preserve
requirePragma: false
semi: true
singleQuote: true
tabWidth: 2
trailingComma: all
useTabs: false
vueIndentScriptAndStyle: true
xmlSelfClosingSpace: false
xmlWhitespaceSensitivity: strict

# Override configuration for Sass src
# per stylelint-config-twbs-bootstrap
overrides:
- files: '*.scss'
options:
singleQuote: false

plugins:
- '@prettier/plugin-xml'
Loading

0 comments on commit 736d6b1

Please sign in to comment.