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 88c8e69 commit 9d5396fCopy full SHA for 9d5396f
.eslintrc
@@ -17,6 +17,10 @@
17
"no-bitwise": 0,
18
"no-param-reassign": 0,
19
"no-unnamed-functions": 0,
20
- "no-unused-expressions": 0
+ "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
25
}
26
src/constants.js
@@ -23,6 +23,7 @@ export const minimumVersions = {
LFS: '2.0.0',
};
+// Copied from NodeGit for now... eventually we will find a way to change that
27
export const Error = {
28
CODE: {
29
OK: 0,
0 commit comments