Skip to content

Commit

Permalink
fix(antd/next): fix style compiler error (#2310)
Browse files Browse the repository at this point in the history
  • Loading branch information
janryWang authored Oct 15, 2021
1 parent 13008d1 commit 44adf04
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/ban-ts-comment": "off",
"react/no-unescaped-entities": "off",
"react/prop-types": "off"
},
Expand Down
1 change: 1 addition & 0 deletions packages/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"@typescript-eslint/no-use-before-define": 0,
"@typescript-eslint/no-unused-vars": 1,
"@typescript-eslint/no-namespace": 0,
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/ban-types": 0,
"@typescript-eslint/adjacent-overload-signatures": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
Expand Down
2 changes: 1 addition & 1 deletion packages/antd/src/form-layout/style.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import './style.less'
// @ts-ignore
2 changes: 1 addition & 1 deletion packages/antd/src/form/style.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import './style.less'
// @ts-ignore
2 changes: 1 addition & 1 deletion packages/next/src/form-layout/style.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import './main.scss'
// @ts-ignore
2 changes: 1 addition & 1 deletion packages/next/src/form/style.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
import './main.scss'
// @ts-ignore

0 comments on commit 44adf04

Please sign in to comment.