-
Notifications
You must be signed in to change notification settings - Fork 6
chore(biome): add lint:fix script for auto-fix #208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| import type { Meta, StoryObj } from '@storybook/react'; | ||
|
|
||
| import { Component } from './Component'; | ||
|
|
||
| const meta = { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,3 @@ | ||
| { | ||
| "recommendations": [ | ||
| "biomejs.biome", | ||
| "github.vscode-github-actions" | ||
| ] | ||
| "recommendations": ["biomejs.biome", "github.vscode-github-actions"] | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| import type { Meta, StoryObj } from '@storybook/react'; | ||
|
|
||
| import { Card } from './Card'; | ||
|
|
||
| const meta = { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,8 @@ | ||
| import { color } from '@sipe-team/tokens'; | ||
|
|
||
| import { render, screen } from '@testing-library/react'; | ||
| import { expect, test } from 'vitest'; | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove extra blank line inside the external import group. Line 5 splits external-package imports into two groups; keep them contiguous and only separate between major groups. Proposed fix import { render, screen } from '@testing-library/react';
import { expect, test } from 'vitest';
-
import { Card } from './Card';As per coding guidelines, " 🤖 Prompt for AI Agents |
||
| import { Card } from './Card'; | ||
|
|
||
| test('children으로 넘어간 요소를 반환한다. ', () => { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
위에 format 스크립드도 있어서 역할을 확실히 분리하거나, 스크립트명 더 명확하게 바꾸면 좋을꺼 같아용~~
음.. fix:biome?