Skip to content

Commit 64880d2

Browse files
committed
Format code
1 parent 292d934 commit 64880d2

31 files changed

+135
-663
lines changed

.eslintignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
*.css
2-
*.svg
2+
*.svg
3+
*.html
4+
*.mdx

.eslintrc.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"extends": [
99
"eslint:recommended",
1010
"next",
11-
"prettier",
12-
"plugin:storybook/recommended"
11+
// "plugin:storybook/recommended"
12+
"prettier"
1313
],
1414
"plugins": [
1515
"eslint-plugin-prettier",
@@ -79,6 +79,7 @@
7979
"printWidth": 110,
8080
"proseWrap": "preserve",
8181
"requirePragma": false,
82+
"quoteProps": "preserve",
8283
"semi": false,
8384
"singleQuote": true,
8485
"tabWidth": 2,

.prettierignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
*.css
22
*.svg
33
*.json
4+
*.html
5+
*.mdx
6+
*.yml
7+
48

59
README.md

.storybook/preview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Preview } from '@storybook/react'
2-
import '../src/styles/globals.css';
2+
import '../src/styles/globals.css'
33

44
const preview: Preview = {
55
parameters: {

cypress/e2e/app.cy.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ describe('Navigation', () => {
1818
})
1919
})
2020

21-
22-
2321
// // Cypress E2E Test
2422
// describe('Navigation', () => {
2523
// it('should navigate to the about page', () => {

src/components/pageTitle.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { COLOR_TYPE } from "../lib/constants"
2-
31
type PageTitleType = {
42
title: string
53
color?: string

src/components/ui/__tests__/button.test.tsx

Lines changed: 0 additions & 59 deletions
This file was deleted.

src/components/ui/__tests__/checkbox.test.tsx

Lines changed: 0 additions & 48 deletions
This file was deleted.

src/components/ui/__tests__/dateTimePicker.test.tsx

Lines changed: 0 additions & 43 deletions
This file was deleted.

src/components/ui/__tests__/fieldLabel.test.tsx

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)