534bb94eea
Test Migrations / Migrations (SQLite) (push) Has been cancelled
Build Dev Image / build-dev-image (push) Has been cancelled
Check i18n Keys / Check i18n Key Consistency (push) Has been cancelled
Lint / Ruff Lint & Format (push) Has been cancelled
Lint / Frontend Lint (push) Has been cancelled
Test Migrations / Migrations (PostgreSQL) (push) Has been cancelled
22 lines
405 B
JavaScript
Executable File
22 lines
405 B
JavaScript
Executable File
/**
|
|
* @see https://prettier.io/docs/configuration
|
|
* @type {import("prettier").Config}
|
|
*/
|
|
const config = {
|
|
// 单行长度
|
|
printWidth: 80,
|
|
// 缩进
|
|
tabWidth: 2,
|
|
// 使用空格代替tab缩进
|
|
useTabs: false,
|
|
// 句末使用分号
|
|
semi: true,
|
|
// 使用单引号
|
|
singleQuote: true,
|
|
// 大括号前后空格
|
|
bracketSpacing: true,
|
|
trailingComma: 'all',
|
|
};
|
|
|
|
export default config;
|