Skip to content

Commit

Permalink
[eslint] fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Sep 11, 2023
1 parent 5462b41 commit 7c907d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"no-proto": 0,
"no-sparse-arrays": 1,
"no-underscore-dangle": 0,
"no-invalid-this": 0,
"object-curly-newline": 0,
"no-invalid-this": 0,
"object-curly-newline": 0,
"sort-keys": 0,
},

Expand All @@ -26,7 +26,7 @@
"files": "examples/**",
"rules": {
"no-console": 0,
"no-plusplus": 0,
"no-plusplus": 0,
},
},
],
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ function copy(src) {
dst = {};
} else {
var proto = (src.constructor && src.constructor.prototype)
|| src.__proto__
|| {};
|| src.__proto__
|| {};
var T = function T() {}; // eslint-disable-line func-style, func-name-matching
T.prototype = proto;
dst = new T();
Expand Down

0 comments on commit 7c907d6

Please sign in to comment.