2023-01-03 11:55:46 -08:00
|
|
|
// Copyright 2018 Signal Messenger, LLC
|
2020-10-30 15:34:04 -05:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2025-08-04 13:35:20 -07:00
|
|
|
/** @type {import("prettier").Config} */
|
2018-04-27 18:15:17 -04:00
|
|
|
module.exports = {
|
|
|
|
singleQuote: true,
|
2020-11-18 07:15:42 -08:00
|
|
|
arrowParens: 'avoid',
|
2018-04-27 18:15:17 -04:00
|
|
|
trailingComma: 'es5',
|
2025-08-04 13:35:20 -07:00
|
|
|
overrides: [
|
|
|
|
{
|
|
|
|
files: ['./ts/axo/**.tsx'],
|
|
|
|
plugins: ['prettier-plugin-tailwindcss'],
|
|
|
|
options: {
|
|
|
|
tailwindStylesheet: './ts/axo/tailwind.css',
|
|
|
|
tailwindFunctions: ['css'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
2018-04-27 18:15:17 -04:00
|
|
|
};
|