mirror of
https://github.com/teableio/teable
synced 2024-11-22 15:31:39 +00:00
0a5e32a038
* chore: change github url to teableio * chore: rename teable-group to teable * chore: rename url path to teableio
27 lines
461 B
JavaScript
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;
|