Skip to content

Commit

Permalink
fix: resizbale option not working
Browse files Browse the repository at this point in the history
  • Loading branch information
hemengke1997 committed Oct 16, 2023
1 parent 8a2edde commit 8efae9d
Show file tree
Hide file tree
Showing 38 changed files with 3,896 additions and 4,475 deletions.
6 changes: 0 additions & 6 deletions .eslintrc.json

This file was deleted.

4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
{}
{
"eslint.experimental.useFlatConfig": true
}
2 changes: 1 addition & 1 deletion __tests__/core.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { FC } from 'react'
import { describe, expect, it } from 'vitest'
import { Table } from 'antd'
import { type FC } from 'react'
import useAntdResizableHeader from '../src'
import { renderHook } from './test-utils'

Expand Down
11 changes: 11 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { createRequire } from 'node:module'
const require = createRequire(import.meta.url)

const { defineConfig } = require('@minko-fe/eslint-config')
export default defineConfig([
{
rules: {
'no-empty-pattern': 'off',
},
},
])
Loading

0 comments on commit 8efae9d

Please sign in to comment.