Skip to content

Commit 2ddde83

Browse files
committed
chore: 更新.gitignore并禁用eslint检查
1 parent c57d677 commit 2ddde83

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,5 @@ dist
7979

8080
# IDE
8181
.idea
82+
83+
.DS_Store

src/core/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function unpluginAutoExport(config: IOptions, alias: AliasOptions & Alias
4040
}
4141
})
4242
.join('\n')
43-
const indexFileContent = `${exportList || 'export {}'}\n`
43+
const indexFileContent = `/* eslint-disable */\n${exportList || 'export {}'}\n`
4444
fs.writeFileSync(indexFilePath, indexFileContent)
4545
}
4646
const init = () => {

0 commit comments

Comments
 (0)