diff options
| author | AAGaming <aagaming@riseup.net> | 2024-06-13 17:49:40 -0400 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-06-13 17:49:40 -0400 |
| commit | d6e71b23ef3b87a3cd42b69a613a4ef2d3417320 (patch) | |
| tree | b7f5dbbc372a7d561638ae1cc25dc06816f2c561 /frontend/.prettierrc.js | |
| parent | 54aecee64e5c549a440127995f94aeb77fb9d0dd (diff) | |
| download | decky-loader-d6e71b23ef3b87a3cd42b69a613a4ef2d3417320.tar.gz decky-loader-d6e71b23ef3b87a3cd42b69a613a4ef2d3417320.zip | |
fixup prettier
Diffstat (limited to 'frontend/.prettierrc.js')
| -rw-r--r-- | frontend/.prettierrc.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/frontend/.prettierrc.js b/frontend/.prettierrc.js index 01727ff9..7a0331c8 100644 --- a/frontend/.prettierrc.js +++ b/frontend/.prettierrc.js @@ -1,9 +1,10 @@ -module.exports = { +import importSort from 'prettier-plugin-import-sort'; +export default { semi: true, trailingComma: 'all', singleQuote: true, printWidth: 120, tabWidth: 2, endOfLine: 'auto', - plugins: [require('prettier-plugin-import-sort')], -}; + plugins: [importSort], +}
\ No newline at end of file |
