File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,16 @@ const config = {
13
13
"plugin:@typescript-eslint/stylistic-type-checked"
14
14
] ,
15
15
"rules" : {
16
+ "@typescript-eslint/no-unsafe-assignment" : "off" ,
17
+ "@typescript-eslint/no-unsafe-argument" : "off" ,
18
+ "@typescript-eslint/no-unsafe-member-access" : "off" ,
19
+ "@typescript-eslint/no-unsafe-call" : "off" ,
20
+ "@typescript-eslint/no-explicit-any" : "off" ,
21
+ "@typescript-eslint/prefer-nullish-coalescing" : "off" ,
22
+ "@typescript-eslint/no-floating-promises" : "off" ,
23
+ "@typescript-eslint/prefer-regexp-exec" : "off" ,
24
+ "@typescript-eslint/prefer-optional-chain" : "off" ,
25
+ "@typescript-eslint/no-unnecessary-type-assertion" : "off" ,
16
26
"@typescript-eslint/array-type" : "off" ,
17
27
"@typescript-eslint/consistent-type-definitions" : "off" ,
18
28
"@typescript-eslint/consistent-type-imports" : [
@@ -37,6 +47,7 @@ const config = {
37
47
}
38
48
}
39
49
]
40
- }
50
+ } ,
51
+ "ignorePatterns" : [ ".eslintrc.cjs" , "env.js" ]
41
52
}
42
53
module . exports = config ;
Original file line number Diff line number Diff line change @@ -318,7 +318,7 @@ export default function HomePage() {
318
318
setIsOrganization ( isOrg ) ;
319
319
320
320
const now = new Date ( ) ;
321
- let fromDate = new Date ( ) ;
321
+ const fromDate = new Date ( ) ;
322
322
323
323
switch ( effectiveTimeframe ) {
324
324
case "24h" :
You can’t perform that action at this time.
0 commit comments