1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-11-23 21:44:44 +02:00
Files
woodpecker/docs/.prettierrc.js

14 lines
382 B
JavaScript
Raw Normal View History

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