kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
17 wiersze
450 B
JavaScript
17 wiersze
450 B
JavaScript
|
module.exports = {
|
||
|
plugins: [require('@trivago/prettier-plugin-sort-imports')],
|
||
|
singleQuote: true,
|
||
|
jsxSingleQuote: true,
|
||
|
semi: false,
|
||
|
useTabs: false,
|
||
|
tabWidth: 2,
|
||
|
bracketSpacing: true,
|
||
|
bracketSameLine: false,
|
||
|
arrowParens: 'always',
|
||
|
trailingComma: 'none',
|
||
|
importOrder: ['^node:.*', '<THIRD_PARTY_MODULES>', '^[./]'],
|
||
|
importOrderSeparation: true,
|
||
|
importOrderSortSpecifiers: true,
|
||
|
importOrderGroupNamespaceSpecifiers: true
|
||
|
}
|