Skip to content

Commit

Permalink
Merge branch 'main' into file-sync/default
Browse files Browse the repository at this point in the history
  • Loading branch information
usefulthink authored Oct 17, 2023
2 parents bd97888 + d23d6a5 commit c0cc10f
Show file tree
Hide file tree
Showing 15 changed files with 5,386 additions and 3,291 deletions.
11 changes: 8 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,15 @@
"plugins": ["@typescript-eslint"],
"extends": ["plugin:@typescript-eslint/recommended"],
"rules": {
"@typescript-eslint/no-unused-vars": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/ban-types": 1,
"@typescript-eslint/no-empty-function": 1,
"@typescript-eslint/member-ordering": 1,
"@typescript-eslint/ban-types": [
1,
{ "extendDefaults": true, "types": { "Function": false } }
],
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/member-ordering": 0,
"@typescript-eslint/explicit-member-accessibility": [
1,
{
Expand Down
5 changes: 2 additions & 3 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@
*/

module.exports = {
transform: {
"^.+\\.tsx?$": "ts-jest",
},
roots: ["<rootDir>"],
preset: "ts-jest",
collectCoverage: true,
testPathIgnorePatterns: ["/dist/"],
testEnvironment: "jsdom",
Expand Down
Loading

0 comments on commit c0cc10f

Please sign in to comment.