Skip to content

Commit

Permalink
Merge pull request #6124 from calebfoss/issue_6038
Browse files Browse the repository at this point in the history
Replace os import to always use '\n' for EOL - resolves #6038
  • Loading branch information
limzykenneth authored May 3, 2023
2 parents 6ffaded + 6322528 commit 3b9dad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/sample-linter.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict';
import { EOL } from 'os';
const EOL = '\n';
import { ESLint } from 'eslint';
import dataDoc from '../docs/reference/data.min.json';
// envs: ['eslint-samples/p5'],
Expand Down

0 comments on commit 3b9dad6

Please sign in to comment.