mirror of
https://github.com/teableio/teable
synced 2024-11-21 23:04:16 +00:00
29 lines
470 B
JavaScript
29 lines
470 B
JavaScript
// @ts-check
|
|
|
|
const {
|
|
getPrettierConfig,
|
|
} = require('@teable-group/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;
|