mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-16 04:25:30 +00:00
13 lines
382 B
JavaScript
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.
|
|
'^(#|@|~|\\$)(/.*)$',
|
|
'',
|
|
'^[./]',
|
|
],
|
|
};
|