teable/.prettierrc.js
tea artist 0a5e32a038
chore: rename (#356)
* chore: change github url to teableio

* chore: rename teable-group to teable

* chore: rename url path to teableio
2024-01-30 22:20:05 +08:00

27 lines
461 B
JavaScript

// @ts-check
const { getPrettierConfig } = require('@teable/eslint-config-bases/helpers');
const { overrides = [], ...prettierConfig } = getPrettierConfig();
/**
* @type {import('prettier').Config}
*/
const config = {
...prettierConfig,
overrides: [
...overrides,
...[
{
files: '*.md',
options: {
singleQuote: false,
quoteProps: 'preserve',
},
},
],
],
};
module.exports = config;