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 206ce7a commit ef37d31Copy full SHA for ef37d31
apify-docs-theme/src/roa-loader/index.js
@@ -43,7 +43,9 @@ async function getHash(source) {
43
}
44
45
cache[cacheKey] = res.data.encoded;
46
- await new Promise((resolve) => setTimeout(resolve, 100));
+ await new Promise((resolve) => {
47
+ setTimeout(resolve, 100);
48
+ });
49
50
return res.data.encoded;
51
eslint.config.mjs
@@ -18,7 +18,6 @@ export default [
18
{
19
rules: {
20
'@typescript-eslint/no-explicit-any': 'off',
21
- 'no-promise-executor-return': 'off',
22
'no-param-reassign': 'off',
23
'no-void': 'off',
24
'no-console': 'off',
@@ -28,6 +27,22 @@ export default [
28
27
'import/no-default-export': 'off',
29
},
30
+ // {
31
+ // files: ['test/**/*.{js,jsx,mjs,cjs,ts,tsx}'],
32
+ // rules: {
33
+ // '@typescript-eslint/consistent-type-imports': 'off',
34
+ // 'no-promise-executor-return': 'off',
35
+ // '@typescript-eslint/no-explicit-any': 'off',
36
+ // 'no-param-reassign': 'off',
37
+ // 'no-void': 'off',
38
+ // 'no-console': 'off',
39
+ // 'no-unused-vars': 'off',
40
+ // 'import/no-extraneous-dependencies': 'off',
41
+ // 'import/extensions': 'off',
42
+ // 'import/no-default-export': 'off',
+ // 'quote-props': ['error', 'consistent'],
+ // },
files: ['**/*.{js,jsx,mjs,cjs,ts,tsx}'],
plugins: {
0 commit comments