mirror of
https://github.com/Koenkk/zigbee-OTA.git
synced 2026-06-24 13:00:12 +00:00
29 lines
539 B
JavaScript
29 lines
539 B
JavaScript
import sortImports from '@ianvs/prettier-plugin-sort-imports';
|
|
|
|
export default {
|
|
plugins: [sortImports],
|
|
semi: true,
|
|
trailingComma: 'all',
|
|
singleQuote: true,
|
|
printWidth: 150,
|
|
bracketSpacing: false,
|
|
endOfLine: 'lf',
|
|
tabWidth: 4,
|
|
importOrder: [
|
|
'',
|
|
'<TYPES>^(node:)',
|
|
'',
|
|
'<TYPES>',
|
|
'',
|
|
'<TYPES>^[.]',
|
|
'',
|
|
'<BUILTIN_MODULES>',
|
|
'',
|
|
'<THIRD_PARTY_MODULES>',
|
|
'',
|
|
'^zigbee',
|
|
'',
|
|
'^[.]',
|
|
],
|
|
};
|