
* chore: update deps * chore: update deps for apps/docs * chore: update landing-page deps * chore: update monorepo deps * chore: add astro as dep to config * chore: update package lock * fix: tailwind import on landing-page * chore: type module * chore: remove ci run for node 16 * chore: ci run ci * chore: remove astro check from ci * chore: remove lint check from ci * fix: tailwindcss import * fix: check errors on apps * chore: fix npm run check * chore: updat emonorepo deps * chore: not a module * chore: use astro-iconify instead * chore: update prettier * chore: use prettier formatter * chore: update lint deps * chore: run lint on ci * chore: add changeset
25 lines
484 B
JavaScript
25 lines
484 B
JavaScript
/** @type {import("@types/prettier").Options} */
|
|
module.exports = {
|
|
printWidth: 100,
|
|
semi: true,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'es5',
|
|
useTabs: true,
|
|
plugins: ['prettier-plugin-astro'],
|
|
overrides: [
|
|
{
|
|
files: '*.astro',
|
|
options: {
|
|
parser: 'astro',
|
|
astroAllowShorthand: false,
|
|
},
|
|
},
|
|
{
|
|
files: ['.*', '*.json', '*.md', '*.toml', '*.yml'],
|
|
options: {
|
|
useTabs: false,
|
|
},
|
|
},
|
|
],
|
|
};
|