UNPKG

purrbot-api

Version:

The official API wrapper for the Purrbot.site API 100% API Coverage 100% Type-Script coverage

79 lines (78 loc) 1.57 kB
{ "overrides": [ { "files": ["tests/**/*"], "env": { "jest": true } } ], "settings": { "import/parsers": { "@typescript-eslint/parser": [".ts"] }, "import/resolver": { "typescript": {} } }, "plugins": ["@typescript-eslint", "prettier"], "env": { "browser": true, "es2021": true }, "extends": [ "airbnb-base", "plugin:prettier/recommended", "airbnb", "eslint:recommended", "plugin:@typescript-eslint/recommended" ], "parser": "@typescript-eslint/parser", "parserOptions": { "requireConfigFile": false, "ecmaVersion": "latest", "ecmaFeatures": { "experimentalObjectRestSpread": true } }, "rules": { "linebreak-style": "off", "import/extensions": [ "error", "ignorePackages", { "js": "never", "jsx": "never", "ts": "never", "tsx": "never" } ], "no-use-before-define": "off", "no-bitwise": "off", "no-param-reassign": "off", "no-underscore-dangle": "off", "no-confusing-arrow": "off", "implicit-arrow-linebreak": "off", "indent": "off", "function-paren-newline": "off", "operator-linebreak": "off", "nonblock-statement-body-position": "off", "padded-blocks": "off", "quotes": "off", "object-curly-newline": "off", "lines-between-class-members": "off", "import/no-extraneous-dependencies": "off", "no-shadow": [ "error", { "builtinGlobals": false, "hoist": "functions", "allow": [], "ignoreOnInitialization": false } ], "no-new": "off", "prettier/prettier": [ "warn", { "singleQuote": true, "semi": true } ] } }