Init Axo design system

This commit is contained in:
Jamie Kyle
2025-08-04 13:35:20 -07:00
committed by GitHub
parent 7553a85b1c
commit 0d99f8bca2
35 changed files with 4785 additions and 210 deletions

View File

@@ -1,8 +1,19 @@
// 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'],
},
},
],
};