1
0

Refactor issue processor (#45)

* Refctor into an issue processor, add debug mode
* Move processor to use its own types so testing is easier
* Add more tests
This commit is contained in:
Ross Brodbeck
2020-04-16 13:57:59 -04:00
committed by GitHub
parent 6127f8ef7a
commit aad6ffa865
7 changed files with 601 additions and 252 deletions
+2 -2
View File
@@ -23,7 +23,7 @@
"@typescript-eslint/generic-type-naming": ["error", "^[A-Z][A-Za-z]*$"],
"@typescript-eslint/no-array-constructor": "error",
"@typescript-eslint/no-empty-interface": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-extraneous-class": "error",
"@typescript-eslint/no-for-in-array": "error",
"@typescript-eslint/no-inferrable-types": "error",
@@ -45,7 +45,7 @@
"@typescript-eslint/restrict-plus-operands": "error",
"semi": "off",
"@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/unbound-method": "error"
"@typescript-eslint/unbound-method": "off"
},
"env": {
"node": true,