Skip to content

Commit 5be3c81

Browse files
committed
fix lint
1 parent 163bb3c commit 5be3c81

7 files changed

+22
-6
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"compile": "father build",
3030
"gh-pages": "npm run build && father doc deploy",
3131
"prepublishOnly": "npm run compile && np --yolo --no-publish",
32-
"lint": "eslint src/ --ext .ts,.tsx,.jsx,.js,.md",
32+
"lint": "eslint src/ --ext .ts,.tsx,.jsx,.js",
3333
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
3434
"test": "father test",
3535
"coverage": "father test --coverage"

src/Circle.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as React from 'react';
22
import classNames from 'classnames';
33
import { useTransitionDuration, defaultProps } from './common';
4-
import { ProgressProps, GapPositionType } from './interface';
4+
import type { ProgressProps, GapPositionType } from './interface';
55

66
let gradientSeed = 0;
77

src/Line.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as React from 'react';
22
import classNames from 'classnames';
33
import { useTransitionDuration, defaultProps } from './common';
4-
import { ProgressProps } from './interface';
4+
import type { ProgressProps } from './interface';
55

66
const Line: React.FC<ProgressProps> = ({
77
className,

src/common.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useRef, useEffect } from 'react';
2-
import { ProgressProps } from './interface';
2+
import type { ProgressProps } from './interface';
33

44
export const defaultProps: Partial<ProgressProps> = {
55
className: '',

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Line from './Line';
22
import Circle from './Circle';
3-
import { ProgressProps } from './interface';
3+
import type { ProgressProps } from './interface';
44

55
export { Line, Circle, ProgressProps };
66

src/interface.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as React from 'react';
1+
import type * as React from 'react';
22

33
export interface ProgressProps {
44
strokeWidth?: number;

tsconfig.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
{
3+
"compilerOptions": {
4+
"target": "esnext",
5+
"moduleResolution": "node",
6+
"baseUrl": "./",
7+
"jsx": "preserve",
8+
"declaration": true,
9+
"skipLibCheck": true,
10+
"esModuleInterop": true,
11+
"paths": {
12+
"@/*": ["src/*"],
13+
"@@/*": ["src/.umi/*"]
14+
}
15+
}
16+
}

0 commit comments

Comments
 (0)