mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-19 17:40:08 +02:00
10 lines
189 B
JavaScript
10 lines
189 B
JavaScript
|
|
module.exports = {
|
||
|
|
semi: true,
|
||
|
|
trailingComma: 'all',
|
||
|
|
singleQuote: true,
|
||
|
|
printWidth: 120,
|
||
|
|
tabWidth: 2,
|
||
|
|
endOfLine: 'auto',
|
||
|
|
plugins: [require('prettier-plugin-import-sort')],
|
||
|
|
};
|