Skip to content

Commit

Permalink
remove prettier plugin, which is not needed anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
yuki-js committed Aug 2, 2024
1 parent 4776a2c commit c655115
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 48 deletions.
3 changes: 1 addition & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:react/jsx-runtime",
"plugin:prettier/recommended"
"plugin:react/jsx-runtime"
],
"rules": {
"react/no-deprecated": "warn",
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"lerna": "^8.0.2",
Expand All @@ -49,4 +48,4 @@
"typescript": "^5.3.3"
},
"packageManager": "npm@9.6.6+sha1.553376bb7b5de4b1cf2b5f3471f674b678c7e14d"
}
}
17 changes: 8 additions & 9 deletions packages/playground/src/samples/made-by-aokiapp/cms.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable prettier/prettier */
import { Sample } from '../Sample';
import { Type } from '@sinclair/typebox';
import { NamedStringEnum } from './utils';
Expand All @@ -13,7 +12,7 @@ const schema = Type.Object(
Type.String({
title: 'サブタイトル',
description: 'サブタイトルをつけると、より一層読み手を惹きつけることができます。',
}),
})
),
tags: Type.Array(
Type.String({
Expand All @@ -23,7 +22,7 @@ const schema = Type.Object(
uniqueItems: true,
title: 'タグ',
description: 'タグをつけると、検索しやすくなります。',
},
}
),
body: Type.String({
title: '本文',
Expand All @@ -37,21 +36,21 @@ const schema = Type.Object(
uniqueItems: true,
title: '画像',
description: '本文中に挿入する画像を選択してください。画像は最大10枚まで挿入できます。',
},
}
),
thumbnail: Type.Optional(
Type.String({
title: 'サムネイル',
description: '設定しない場合は、本文中の最初の画像がサムネイルになります。',
format: 'data-url',
}),
})
),
publishedAt: Type.Optional(
Type.String({
title: '公開日時',
description: '設定しない場合は、すぐに公開されます。',
format: 'date-time',
}),
})
),
scope: NamedStringEnum(
{
Expand All @@ -63,19 +62,19 @@ const schema = Type.Object(
{
title: '公開範囲',
description: '公開範囲を設定します。',
},
}
),
price: Type.Optional(
Type.Number({
title: '価格',
description: '価格を設定します。',
minimum: 0,
}),
})
),
},
{
title: '',
},
}
);

const uiSchema = {
Expand Down
69 changes: 34 additions & 35 deletions packages/playground/src/samples/made-by-aokiapp/hsema.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable prettier/prettier */
import { Sample } from '../Sample';
import { Type } from '@sinclair/typebox';
import { NamedNumberEnum, NamedStringEnum, ObjectIfThenElse } from './utils';
Expand Down Expand Up @@ -29,7 +28,7 @@ const userIdentInfo = Type.Object(
},
{
title: '性別',
},
}
),
birthDate: Type.String({
title: '生年月日',
Expand All @@ -50,7 +49,7 @@ const userIdentInfo = Type.Object(
{
title: '',
$id: '#/definitions/userIdentInfo',
},
}
);

const definitions = {
Expand All @@ -67,7 +66,7 @@ const subjectEnum = NamedStringEnum(
},
{
title: '受験科目',
},
}
);
const schema = Type.Object(
{
Expand Down Expand Up @@ -95,7 +94,7 @@ const schema = Type.Object(
{
title: '管理情報',
description: '出願に対する管理上の事項です。',
},
}
),
acceptanceInfo: Type.Object(
{
Expand All @@ -116,13 +115,13 @@ const schema = Type.Object(
{
title: '申請状況',
description: '申請の状況を選択してください。',
},
}
),
},
{
title: '受付情報',
description: '受付に関する情報です。',
},
}
),
examinee: Type.Object(
{
Expand All @@ -140,7 +139,7 @@ const schema = Type.Object(
readOnly: true,
}),
},
{ title: '受験者情報', description: '試験を受ける本人の情報を入力してください' },
{ title: '受験者情報', description: '試験を受ける本人の情報を入力してください' }
),
applicant: ObjectIfThenElse(
Type.Object({
Expand All @@ -151,7 +150,7 @@ const schema = Type.Object(
},
{
title: '申請者の有無',
},
}
),
}),
Type.Object({
Expand All @@ -163,7 +162,7 @@ const schema = Type.Object(
{
title: '申請者情報',
description: '本申請書を提出し、連絡や書類の返送を受けるための連絡先を入力してください',
},
}
),

guardian: ObjectIfThenElse(
Expand All @@ -174,7 +173,7 @@ const schema = Type.Object(
sameAsApplicant: '申請者と同じ',
other: '申請者と異なる',
},
{ title: '保護者の有無' },
{ title: '保護者の有無' }
),
}),
Type.Object({
Expand All @@ -186,7 +185,7 @@ const schema = Type.Object(
{
title: '保護者情報',
description: '保護者または成年後見人の情報を入力してください',
},
}
),

applicationInfo: Type.Object(
Expand All @@ -205,7 +204,7 @@ const schema = Type.Object(
subdepartment: Type.Optional(
Type.String({
title: '学科/専攻等名',
}),
})
),
departmentCode: Type.String({
title: '学科/専攻等コード',
Expand All @@ -221,7 +220,7 @@ const schema = Type.Object(
{
title: '入学種別',
examples: [0],
},
}
),
enterAt: Type.String({
title: '入学年月',
Expand All @@ -235,7 +234,7 @@ const schema = Type.Object(
{
title: '出願情報',
description: '申請書に記載される出願に関する情報を入力してください。',
},
}
),
examinationInfo: Type.Object(
{
Expand All @@ -262,21 +261,21 @@ const schema = Type.Object(
title: '受験科目と問題番号',
description: '受験する科目と問題番号を入力してください。',
uniqueItems: true,
},
}
),
},
{
title: '試験情報',
description: '当日の試験に関する情報を入力してください。',
},
}
),
handicap: Type.Object(
{
isMild: Type.Optional(
Type.Boolean({
title: '軽症者特例',
description: '軽症者特例を適用しますか?',
}),
})
),
vision: Type.Optional(
NamedStringEnum(
Expand All @@ -290,8 +289,8 @@ const schema = Type.Object(
},
{
title: '視覚',
},
),
}
)
),
hearing: Type.Optional(
NamedStringEnum(
Expand All @@ -301,8 +300,8 @@ const schema = Type.Object(
},
{
title: '聴覚',
},
),
}
)
),
physical: Type.Optional(
NamedStringEnum(
Expand All @@ -315,8 +314,8 @@ const schema = Type.Object(
},
{
title: '肢体不自由',
},
),
}
)
),
developmental: Type.Optional(
NamedStringEnum(
Expand All @@ -325,8 +324,8 @@ const schema = Type.Object(
},
{
title: '発達障害',
},
),
}
)
),
needPreExamHelp: Type.Boolean({
title: '試験前の配慮',
Expand All @@ -337,19 +336,19 @@ const schema = Type.Object(
Type.String({
title: '障害の特徴に関する自由記述欄',
description: '障害について記入してください。',
}),
})
),
helps: Type.Optional(
Type.String({
title: '配慮内容に関する自由記述欄',
description: '配慮内容について記入してください。',
}),
})
),
},
{
title: '配慮の有無',
description: '受験上の配慮についての情報を入力してください。',
},
}
),
fee: Type.Object(
{
Expand All @@ -374,13 +373,13 @@ const schema = Type.Object(
{
uniqueItems: true,
title: '特例',
},
}
),
},
{
title: '受験料等',
description: '受験料等に関する情報を入力してください。',
},
}
),
delay: ObjectIfThenElse(
Type.Object({
Expand All @@ -406,7 +405,7 @@ const schema = Type.Object(
}),
{
title: '遅延出願',
},
}
),
memo: Type.Object(
{
Expand All @@ -422,18 +421,18 @@ const schema = Type.Object(
{
title: 'メモアイテム',
description: 'メモのアイテムです。',
},
}
),
},
{
title: 'メモ・申し送り',
description: '操作者別のメモや申し送りです。',
},
}
),
},
{
definitions,
},
}
);

function UserIdentInfoField(props: FieldProps) {
Expand Down

0 comments on commit c655115

Please sign in to comment.