- add Artikel, Kauf, Kategorie Model - generate Components - playing with custom components - add Tailwindcss
21 lines
454 B
JavaScript
21 lines
454 B
JavaScript
// https://prettier.io/docs/en/options.html
|
|
/** @type {import('prettier').RequiredOptions} */
|
|
module.exports = {
|
|
trailingComma: 'es5',
|
|
bracketSpacing: true,
|
|
tabWidth: 2,
|
|
semi: false,
|
|
singleQuote: true,
|
|
arrowParens: 'always',
|
|
overrides: [
|
|
{
|
|
files: 'Routes.*',
|
|
options: {
|
|
printWidth: 999,
|
|
},
|
|
},
|
|
],
|
|
tailwindConfig: './web/config/tailwind.config.js',
|
|
plugins: [require('prettier-plugin-tailwindcss')],
|
|
}
|