Steven Fukase 4 лет назад
Родитель
Сommit
e91de520fc
1 измененных файлов с 6 добавлено и 6 удалено
  1. 6 6
      packages/app/src/components/Me/EditorSettings.tsx

+ 6 - 6
packages/app/src/components/Me/EditorSettings.tsx

@@ -11,7 +11,7 @@ import { withUnstatedContainers } from '../UnstatedUtils';
 import { toastSuccess, toastError } from '~/client/util/apiNotification';
 
 type EditorSettingsBodyProps = {
-  appContainer: AppContainer;
+  appContainer: AppContainer
 }
 
 type RuleListGroupProps = {
@@ -22,14 +22,14 @@ type RuleListGroupProps = {
 }
 
 type LintRule = {
-  name: string;
-  options?: unknown;
-  isEnabled?: boolean;
+  name: string
+  options?: unknown
+  isEnabled?: boolean
 }
 
 type RulesMenuItem = {
-  name: string;
-  description: string;
+  name: string
+  description: string
 }