mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-12 12:15:00 +00:00
22414744b0
Co-authored-by: qwerty287 <qwerty287@posteo.de> Co-authored-by: qwerty287 <80460567+qwerty287@users.noreply.github.com> Co-authored-by: Anbraten <6918444+anbraten@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
15 lines
471 B
JavaScript
15 lines
471 B
JavaScript
import { readFile } from 'node:fs/promises';
|
|
|
|
const config = JSON.parse(await readFile(new URL('../.prettierrc.json', import.meta.url)));
|
|
|
|
export default {
|
|
...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.
|
|
'^(#|@|~|\\$)(/.*)$',
|
|
'',
|
|
'^[./]',
|
|
],
|
|
};
|