Jelajahi Sumber

removed semicolons

Steven Fukase 4 tahun lalu
induk
melakukan
e91de520fc
1 mengubah file dengan 6 tambahan dan 6 penghapusan
  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';
 import { toastSuccess, toastError } from '~/client/util/apiNotification';
 
 
 type EditorSettingsBodyProps = {
 type EditorSettingsBodyProps = {
-  appContainer: AppContainer;
+  appContainer: AppContainer
 }
 }
 
 
 type RuleListGroupProps = {
 type RuleListGroupProps = {
@@ -22,14 +22,14 @@ type RuleListGroupProps = {
 }
 }
 
 
 type LintRule = {
 type LintRule = {
-  name: string;
-  options?: unknown;
-  isEnabled?: boolean;
+  name: string
+  options?: unknown
+  isEnabled?: boolean
 }
 }
 
 
 type RulesMenuItem = {
 type RulesMenuItem = {
-  name: string;
-  description: string;
+  name: string
+  description: string
 }
 }