Skip to main content
Module

x/hypixel/.eslintrc.json

With thorough IntelliSense support & 100% test coverage, this is an unopinionated async/await API wrapper for Hypixel's Public API. It is developed in TypeScript complete with documentation, typed interfaces for all API responses (and an OpenAPI 3.0 schema!), built-in rate-limit handling, flexible cache support, helper functions, and support for undocumented endpoints.
Go to Latest
File
{ "env": { "es6": true, "node": true }, "extends": ["airbnb-typescript-prettier"], "globals": { "Atomics": "readonly", "SharedArrayBuffer": "readonly" }, "parser": "@typescript-eslint/parser", "parserOptions": { "project": "./tsconfig.json" }, "plugins": ["@typescript-eslint"], "settings": { "react": { "version": "999.999.999" } }, "rules": { "camelcase": 0, "import/prefer-default-export": 0, "lines-between-class-members": 0, "no-shadow": 0, "@typescript-eslint/no-namespace": 0, "@typescript-eslint/no-shadow": 2, "no-param-reassign": [ 2, { "props": false } ], "no-unused-vars": 0, "@typescript-eslint/no-unused-vars": 2, "no-use-before-define": 0, "@typescript-eslint/no-use-before-define": [ 2, { "ignoreTypeReferences": true } ] }}