mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
14 lines
261 B
JavaScript
14 lines
261 B
JavaScript
module.exports = {
|
|
plugins: [require('./merged-prettier-plugin.js')],
|
|
singleQuote: true,
|
|
trailingComma: 'es5',
|
|
overrides: [
|
|
{
|
|
files: 'gen-docs/pnpm-lock.yaml',
|
|
options: {
|
|
rangeEnd: 0, // default: Infinity
|
|
},
|
|
},
|
|
],
|
|
};
|