Fixed 8K Members not mapped in scraper index.

This commit is contained in:
DebaucheryLibrarian
2026-01-09 04:54:23 +01:00
parent 5c12122e04
commit 86669a89c6
3 changed files with 70 additions and 3 deletions

21
tests/.eslintrc Executable file
View File

@@ -0,0 +1,21 @@
{
"extends": "airbnb-base",
"parserOptions": {
"parser": "@babel/eslint-parser",
"sourceType": "script"
},
"rules": {
"strict": 0,
"indent": "off",
"no-tabs": "off",
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
"no-console": 0,
"max-len": 0,
"no-underscore-dangle": 0,
"default-param-last": 0,
"prefer-destructuring": "off",
"arrow-body-style": 0,
"template-curly-spacing": "off",
"object-curly-newline": "off"
}
}