woodpecker/docs/.prettierrc.js

14 lines
382 B
JavaScript
Raw Permalink Normal View History

const config = require('../.prettierrc.json');
2024-12-28 14:36:23 +00:00
module.exports = {
2024-12-28 14:36:23 +00:00
...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.
'^(#|@|~|\\$)(/.*)$',
'',
'^[./]',
],
};