Skip to content

Commit a2a6724

Browse files
Copilothotlong
andcommitted
fix: exclude hotcrm submodule from TS/ESLint checks, remove unused import
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent 0abebb0 commit a2a6724

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ module.exports = {
3636
},
3737
},
3838
],
39-
ignorePatterns: ["node_modules/", ".expo/", "dist/", "*.config.js", "babel.config.js"],
39+
ignorePatterns: ["node_modules/", ".expo/", "dist/", "*.config.js", "babel.config.js", "server/hotcrm/"],
4040
};

__tests__/integration/server/crud.integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* pnpm test:integration:server
1313
*/
1414

15-
import { api, apiOk, registerAndLogin } from "./helpers";
15+
import { api, registerAndLogin } from "./helpers";
1616

1717
describe("CRUD Operations", () => {
1818
let cookie = "";

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
],
1717
"exclude": [
1818
"node_modules",
19-
"./apps"
19+
"./apps",
20+
"./server/hotcrm"
2021
]
2122
}

0 commit comments

Comments
 (0)