Skip to content

Commit 9d5396f

Browse files
author
Carson Howard
committed
comments; updated eslint rules
1 parent 88c8e69 commit 9d5396f

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.eslintrc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
"no-bitwise": 0,
1818
"no-param-reassign": 0,
1919
"no-unnamed-functions": 0,
20-
"no-unused-expressions": 0
20+
"no-unused-expressions": 0,
21+
22+
// this is for the tests, don't worrry about it for now
23+
"import/no-unresolved": 1,
24+
"import/extensions": 1
2125
}
2226
}

src/constants.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export const minimumVersions = {
2323
LFS: '2.0.0',
2424
};
2525

26+
// Copied from NodeGit for now... eventually we will find a way to change that
2627
export const Error = {
2728
CODE: {
2829
OK: 0,

0 commit comments

Comments
 (0)