mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
19 lines
408 B
JavaScript
19 lines
408 B
JavaScript
/** @type {import('prettier').Config} */
|
|
module.exports = {
|
|
...require('../../.prettierrc.json'),
|
|
overrides: [
|
|
{
|
|
files: 'turbo/generators/templates/{.cliff-jumperrc.json.hbs,api-extractor.json.hbs,package.json.hbs}',
|
|
options: {
|
|
parser: 'json',
|
|
},
|
|
},
|
|
{
|
|
files: 'turbo/generators/templates/{.lintstagedrc.js.hbs,.prettierrc.js.hbs}',
|
|
options: {
|
|
parser: 'babel',
|
|
},
|
|
},
|
|
],
|
|
};
|