Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2

Check warning on line 1 in .github/dependabot.yaml

View workflow job for this annotation

GitHub Actions / quality-checks / Yamllint - YAML Linter

1:1 [document-start] missing document start "---"
updates:
- package-ecosystem: "github-actions"
directory: "/"
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: "daily"
interval: 'daily'
open-pull-requests-limit: 0
19 changes: 19 additions & 0 deletions .github/workflows/quality-checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: 'Quality Checks'

Check warning on line 1 in .github/workflows/quality-checks.yaml

View workflow job for this annotation

GitHub Actions / quality-checks / Yamllint - YAML Linter

1:1 [document-start] missing document start "---"

on: pull_request

Check warning on line 3 in .github/workflows/quality-checks.yaml

View workflow job for this annotation

GitHub Actions / quality-checks / Yamllint - YAML Linter

3:1 [truthy] truthy value should be one of [false, true]

jobs:
quality-checks:
uses: garretpatten/quality-checks/.github/workflows/quality-checks.yaml@master

Check failure on line 7 in .github/workflows/quality-checks.yaml

View workflow job for this annotation

GitHub Actions / quality-checks / Yamllint - YAML Linter

7:81 [line-length] line too long (82 > 80 characters)
with:
actionlint_run: true
eslint_run: true
hadolint_run: true
jq_run: true
markdownlint_run: true
prettier_run: true
ruff_run: true
shellcheck_run: true
taplo_run: true
yamllint_run: true
secrets: inherit
7 changes: 7 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
build
coverage
dist
node_modules
package-lock.json
*.min.js
*.snap
17 changes: 17 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"endOfLine": "lf",
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "css",
"embeddedLanguageFormatting": "auto"
}
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["esbenp.prettier-vscode"]
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"prettier.prettierPath": "node_modules/prettier",
"prettier.requireConfig": true
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# template

Template repository for projects
28 changes: 28 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"devDependencies": {
"prettier": "^3.6.2"
}
}
Loading