mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-12 00:23:48 +03:00
* Add Decky branch switcher and updater to error boundary * Linting fixup * Update DeckyErrorBoundary.tsx Allow for plugins to trigger new behavior. * Lint fixup
11 lines
213 B
JavaScript
11 lines
213 B
JavaScript
import importSort from 'prettier-plugin-import-sort';
|
|
export default {
|
|
semi: true,
|
|
trailingComma: 'all',
|
|
singleQuote: true,
|
|
printWidth: 120,
|
|
tabWidth: 2,
|
|
endOfLine: 'auto',
|
|
plugins: [importSort],
|
|
};
|