mirror of
https://github.com/KazooTTT/kazoottt-blog.git
synced 2025-06-22 10:11:30 +08:00
Built resume template
This commit is contained in:
22
prettier.config.cjs
Normal file
22
prettier.config.cjs
Normal file
@ -0,0 +1,22 @@
|
||||
/** @type {import("prettier").Config} */
|
||||
module.exports = {
|
||||
// i am just using the standard config, change if you need something else
|
||||
...require('prettier-config-standard'),
|
||||
pluginSearchDirs: [__dirname],
|
||||
plugins: [
|
||||
'prettier-plugin-astro',
|
||||
'prettier-plugin-tailwindcss'
|
||||
],
|
||||
overrides: [
|
||||
{
|
||||
files: '*.astro',
|
||||
options: {
|
||||
parser: 'astro'
|
||||
}
|
||||
},
|
||||
],
|
||||
useTabs: true,
|
||||
singleQuote: true,
|
||||
trailingComma: 'none',
|
||||
printWidth: 100
|
||||
}
|
Reference in New Issue
Block a user