We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c88ffe9 commit d6e75e6Copy full SHA for d6e75e6
packages/utils/eslint.config.js
@@ -16,7 +16,6 @@ export default tseslint.config(
16
files: ['packages/utils/src/lib/**/file-sink*.ts'],
17
rules: {
18
'n/no-sync': 'off',
19
- eqeqeq: 'off',
20
},
21
22
{
packages/utils/src/lib/file-sink.ts
@@ -101,7 +101,7 @@ export class AppendFileSink {
101
102
const { records, partialTail } = this.recover();
103
104
- if (partialTail === null && outputPath === this.filePath) {
+ if (partialTail == null && outputPath === this.filePath) {
105
return;
106
}
107
fs.mkdirSync(path.dirname(outputPath), { recursive: true });
0 commit comments