woodpecker/docs/.prettierrc.js
2025-01-12 12:37:47 +02:00

13 lines
382 B
JavaScript

const config = require('../.prettierrc.json');
module.exports = {
...config,
plugins: ['@ianvs/prettier-plugin-sort-imports'],
importOrder: [
'<THIRD_PARTY_MODULES>', // Imports not matched by other special words or groups.
'', // Empty string will match any import not matched by other special words or groups.
'^(#|@|~|\\$)(/.*)$',
'',
'^[./]',
],
};