-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: fix prettier config * chore: format * chore(prettier): format `.astro` files
- Loading branch information
1 parent
14273d8
commit c06b41a
Showing
5 changed files
with
44 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** @type {import("prettier").Config} */ | ||
export default { | ||
printWidth: 100, | ||
semi: true, | ||
singleQuote: true, | ||
tabWidth: 2, | ||
trailingComma: 'es5', | ||
useTabs: true, | ||
plugins: ['prettier-plugin-astro'], | ||
overrides: [ | ||
{ | ||
files: ['.*', '*.json', '*.md', '*.toml', '*.yml'], | ||
options: { | ||
useTabs: false, | ||
}, | ||
}, | ||
{ | ||
files: ['**/*.astro'], | ||
options: { | ||
parser: 'astro', | ||
}, | ||
}, | ||
], | ||
}; |