Files
2026-07-13 12:30:05 +08:00

19 lines
340 B
JavaScript

/**
* @license
* Copyright 2025 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @type {import('prettier').Config}
*/
module.exports = {
bracketSpacing: false,
singleQuote: true,
trailingComma: 'all',
arrowParens: 'avoid',
singleAttributePerLine: true,
htmlWhitespaceSensitivity: 'strict',
endOfLine: 'lf',
};