Skip to content

Commit

Permalink
[eclint] fix editorconfig
Browse files Browse the repository at this point in the history
See #583
  • Loading branch information
ljharb committed Oct 17, 2022
1 parent 2f61eac commit b0bc636
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
root = true

[*]
indent_style = space
indent_style = tab
indent_size = 4
end_of_line = lf
charset = utf-8
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ var createResult = require('./lib/results');
var through = require('through');

var canEmitExit = typeof process !== 'undefined' && process
&& typeof process.on === 'function' && process.browser !== true;
&& typeof process.on === 'function' && process.browser !== true;
var canExit = typeof process !== 'undefined' && process
&& typeof process.exit === 'function';
&& typeof process.exit === 'function';

module.exports = (function () {
var wait = false;
Expand Down

0 comments on commit b0bc636

Please sign in to comment.