mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-04-30 05:29:34 -05:00
bdb3735840
This is only to avoid accidentally leaking any secrets from early development especially in the light of short-sha attacks.
14 lines
226 B
JavaScript
14 lines
226 B
JavaScript
// .prettierrc.mjs
|
|
/** @type {import("prettier").Config} */
|
|
export default {
|
|
plugins: ['prettier-plugin-astro'],
|
|
overrides: [
|
|
{
|
|
files: '*.astro',
|
|
options: {
|
|
parser: 'astro',
|
|
},
|
|
},
|
|
],
|
|
};
|