fixup prettier

This commit is contained in:
AAGaming
2024-06-13 17:49:40 -04:00
parent 54aecee64e
commit d6e71b23ef
2 changed files with 5 additions and 4 deletions
+4 -3
View File
@@ -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],
}
+1 -1
View File
@@ -1,6 +1,6 @@
import type { ToastData } from '@decky/api';
import { joinClassNames } from '@decky/ui';
import { FC, useEffect, useState, ReactElement } from 'react';
import { FC, ReactElement, useEffect, useState } from 'react';
import { useDeckyToasterState } from './DeckyToasterState';
import Toast, { toastClasses } from './Toast';