mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-19 17:58:48 +00:00
20 lines
445 B
JavaScript
20 lines
445 B
JavaScript
// Copyright 2018 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
/** @type {import("prettier").Config} */
|
|
module.exports = {
|
|
singleQuote: true,
|
|
arrowParens: 'avoid',
|
|
trailingComma: 'es5',
|
|
overrides: [
|
|
{
|
|
files: ['./ts/axo/**.tsx'],
|
|
plugins: ['prettier-plugin-tailwindcss'],
|
|
options: {
|
|
tailwindStylesheet: './ts/axo/tailwind.css',
|
|
tailwindFunctions: ['css'],
|
|
},
|
|
},
|
|
],
|
|
};
|