Skip to content

Commit d6e75e6

Browse files
committed
refactor: wip
1 parent c88ffe9 commit d6e75e6

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

packages/utils/eslint.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ export default tseslint.config(
1616
files: ['packages/utils/src/lib/**/file-sink*.ts'],
1717
rules: {
1818
'n/no-sync': 'off',
19-
eqeqeq: 'off',
2019
},
2120
},
2221
{

packages/utils/src/lib/file-sink.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export class AppendFileSink {
101101

102102
const { records, partialTail } = this.recover();
103103

104-
if (partialTail === null && outputPath === this.filePath) {
104+
if (partialTail == null && outputPath === this.filePath) {
105105
return;
106106
}
107107
fs.mkdirSync(path.dirname(outputPath), { recursive: true });

0 commit comments

Comments
 (0)