@rhyster/eslint-config 1.7.33 → 1.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","sources":["../src/rules/airbnb/best-practices.ts","../src/rules/airbnb/errors.ts","../src/rules/airbnb/es6.ts","../src/rules/airbnb/imports.ts","../src/rules/airbnb/node.ts","../src/rules/airbnb/strict.ts","../src/rules/airbnb/style.ts","../src/rules/airbnb/variables.ts","../src/rules/browser.ts","../src/rules/general.ts","../src/rules/typescript.ts","../src/rules/vue.ts","../src/index.ts"],"sourcesContent":["import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/best-practices',\n rules: {\n // enforces getter/setter pairs in objects\n // https://eslint.org/docs/rules/accessor-pairs\n 'accessor-pairs': 'off',\n\n // enforces return statements in callbacks of array's methods\n // https://eslint.org/docs/rules/array-callback-return\n 'array-callback-return': ['error', { allowImplicit: true }],\n\n // treat var statements as if they were block scoped\n // https://eslint.org/docs/rules/block-scoped-var\n 'block-scoped-var': 'error',\n\n // specify the maximum cyclomatic complexity allowed in a program\n // https://eslint.org/docs/rules/complexity\n complexity: ['off', 20],\n\n // enforce that class methods use \"this\"\n // https://eslint.org/docs/rules/class-methods-use-this\n 'class-methods-use-this': [\n 'error',\n {\n exceptMethods: [],\n },\n ],\n\n // require return statements to either always or never specify values\n // https://eslint.org/docs/rules/consistent-return\n 'consistent-return': 'error',\n\n // specify curly brace conventions for all control statements\n // https://eslint.org/docs/rules/curly\n curly: ['error', 'multi-line'], // multiline\n\n // require default case in switch statements\n // https://eslint.org/docs/rules/default-case\n 'default-case': ['error', { commentPattern: '^no default$' }],\n\n // Enforce default clauses in switch statements to be last\n // https://eslint.org/docs/rules/default-case-last\n 'default-case-last': 'error',\n\n // https://eslint.org/docs/rules/default-param-last\n 'default-param-last': 'error',\n\n // encourages use of dot notation whenever possible\n // https://eslint.org/docs/rules/dot-notation\n 'dot-notation': ['error', { allowKeywords: true }],\n\n // enforces consistent newlines before or after dots\n // https://eslint.style/rules/default/dot-location\n '@stylistic/dot-location': ['error', 'property'],\n\n // require the use of === and !==\n // https://eslint.org/docs/rules/eqeqeq\n eqeqeq: [\n 'error',\n 'always',\n { null: 'ignore' },\n ],\n\n // Require grouped accessor pairs in object literals and classes\n // https://eslint.org/docs/rules/grouped-accessor-pairs\n 'grouped-accessor-pairs': 'error',\n\n // make sure for-in loops have an if statement\n // https://eslint.org/docs/rules/guard-for-in\n 'guard-for-in': 'error',\n\n // enforce a maximum number of classes per file\n // https://eslint.org/docs/rules/max-classes-per-file\n 'max-classes-per-file': ['error', 1],\n\n // disallow the use of alert, confirm, and prompt\n // https://eslint.org/docs/rules/no-alert\n 'no-alert': 'error',\n\n // disallow use of arguments.caller or arguments.callee\n // https://eslint.org/docs/rules/no-caller\n 'no-caller': 'error',\n\n // disallow lexical declarations in case/default clauses\n // https://eslint.org/docs/rules/no-case-declarations\n 'no-case-declarations': 'error',\n\n // Disallow returning value in constructor\n // https://eslint.org/docs/rules/no-constructor-return\n 'no-constructor-return': 'error',\n\n // disallow division operators explicitly at beginning of regular expression\n // https://eslint.org/docs/rules/no-div-regex\n 'no-div-regex': 'off',\n\n // disallow else after a return in an if\n // https://eslint.org/docs/rules/no-else-return\n 'no-else-return': ['error', { allowElseIf: false }],\n\n // disallow empty functions, except for standalone funcs/arrows\n // https://eslint.org/docs/rules/no-empty-function\n 'no-empty-function': [\n 'error',\n {\n allow: [\n 'arrowFunctions',\n 'functions',\n 'methods',\n ],\n },\n ],\n\n // disallow empty destructuring patterns\n // https://eslint.org/docs/rules/no-empty-pattern\n 'no-empty-pattern': 'error',\n\n // Disallow empty static blocks\n // https://eslint.org/docs/rules/no-empty-static-block\n 'no-empty-static-block': 'error',\n\n // disallow comparisons to null without a type-checking operator\n // https://eslint.org/docs/rules/no-eq-null\n 'no-eq-null': 'off',\n\n // disallow use of eval()\n // https://eslint.org/docs/rules/no-eval\n 'no-eval': 'error',\n\n // disallow adding to native types\n // https://eslint.org/docs/rules/no-extend-native\n 'no-extend-native': 'error',\n\n // disallow unnecessary function binding\n // https://eslint.org/docs/rules/no-extra-bind\n 'no-extra-bind': 'error',\n\n // disallow Unnecessary Labels\n // https://eslint.org/docs/rules/no-extra-label\n 'no-extra-label': 'error',\n\n // disallow fallthrough of case statements\n // https://eslint.org/docs/rules/no-fallthrough\n 'no-fallthrough': 'error',\n\n // disallow the use of leading or trailing decimal points in numeric literals\n // https://eslint.style/rules/default/no-floating-decimal\n '@stylistic/no-floating-decimal': 'error',\n\n // disallow reassignments of native objects or read-only globals\n // https://eslint.org/docs/rules/no-global-assign\n 'no-global-assign': ['error', { exceptions: [] }],\n\n // disallow implicit type conversions\n // https://eslint.org/docs/rules/no-implicit-coercion\n 'no-implicit-coercion': [\n 'off',\n {\n boolean: false,\n number: true,\n string: true,\n allow: [],\n },\n ],\n\n // disallow var and named functions in global scope\n // https://eslint.org/docs/rules/no-implicit-globals\n 'no-implicit-globals': 'off',\n\n // disallow use of eval()-like methods\n // https://eslint.org/docs/rules/no-implied-eval\n 'no-implied-eval': 'error',\n\n // disallow this keywords outside of classes or class-like objects\n // https://eslint.org/docs/rules/no-invalid-this\n 'no-invalid-this': 'off',\n\n // disallow usage of __iterator__ property\n // https://eslint.org/docs/rules/no-iterator\n 'no-iterator': 'error',\n\n // disallow use of labels for anything other than loops and switches\n // https://eslint.org/docs/rules/no-labels\n 'no-labels': ['error', { allowLoop: false, allowSwitch: false }],\n\n // disallow unnecessary nested blocks\n // https://eslint.org/docs/rules/no-lone-blocks\n 'no-lone-blocks': 'error',\n\n // disallow creation of functions within loops\n // https://eslint.org/docs/rules/no-loop-func\n 'no-loop-func': 'error',\n\n // disallow magic numbers\n // https://eslint.org/docs/rules/no-magic-numbers\n 'no-magic-numbers': [\n 'off',\n {\n ignore: [],\n ignoreArrayIndexes: true,\n enforceConst: true,\n detectObjects: false,\n },\n ],\n\n // disallow use of multiple spaces\n // https://eslint.style/rules/default/no-multi-spaces\n '@stylistic/no-multi-spaces': [\n 'error',\n {\n ignoreEOLComments: false,\n },\n ],\n\n // disallow use of multiline strings\n // https://eslint.org/docs/rules/no-multi-str\n 'no-multi-str': 'error',\n\n // disallow use of new operator when not part of the assignment or comparison\n // https://eslint.org/docs/rules/no-new\n 'no-new': 'error',\n\n // disallow use of new operator for Function object\n // https://eslint.org/docs/rules/no-new-func\n 'no-new-func': 'error',\n\n // disallows creating new instances of String, Number, and Boolean\n // https://eslint.org/docs/rules/no-new-wrappers\n 'no-new-wrappers': 'error',\n\n // Disallow \\8 and \\9 escape sequences in string literals\n // https://eslint.org/docs/rules/no-nonoctal-decimal-escape\n 'no-nonoctal-decimal-escape': 'error',\n\n // Disallow calls to the Object constructor without an argument\n // https://eslint.org/docs/rules/no-object-constructor\n 'no-object-constructor': 'error',\n\n // disallow use of (old style) octal literals\n // https://eslint.org/docs/rules/no-octal\n 'no-octal': 'error',\n\n // disallow use of octal escape sequences in string literals, such as\n // var foo = 'Copyright \\251';\n // https://eslint.org/docs/rules/no-octal-escape\n 'no-octal-escape': 'error',\n\n // disallow reassignment of function parameters\n // disallow parameter object manipulation except for specific exclusions\n // rule: https://eslint.org/docs/rules/no-param-reassign.html\n 'no-param-reassign': [\n 'error',\n {\n props: true,\n ignorePropertyModificationsFor: [\n 'acc', // for reduce accumulators\n 'accumulator', // for reduce accumulators\n 'e', // for e.returnvalue\n 'ctx', // for Koa routing\n 'context', // for Koa routing\n 'req', // for Express requests\n 'request', // for Express requests\n 'res', // for Express responses\n 'response', // for Express responses\n '$scope', // for Angular 1 scopes\n 'staticContext', // for ReactRouter context\n ],\n },\n ],\n\n // disallow usage of __proto__ property\n // https://eslint.org/docs/rules/no-proto\n 'no-proto': 'error',\n\n // disallow declaring the same variable more than once\n // https://eslint.org/docs/rules/no-redeclare\n 'no-redeclare': 'error',\n\n // disallow certain object properties\n // https://eslint.org/docs/rules/no-restricted-properties\n 'no-restricted-properties': [\n 'error',\n {\n object: 'arguments',\n property: 'callee',\n message: 'arguments.callee is deprecated',\n },\n {\n object: 'global',\n property: 'isFinite',\n message: 'Please use Number.isFinite instead',\n },\n {\n object: 'self',\n property: 'isFinite',\n message: 'Please use Number.isFinite instead',\n },\n {\n object: 'window',\n property: 'isFinite',\n message: 'Please use Number.isFinite instead',\n },\n {\n object: 'global',\n property: 'isNaN',\n message: 'Please use Number.isNaN instead',\n },\n {\n object: 'self',\n property: 'isNaN',\n message: 'Please use Number.isNaN instead',\n },\n {\n object: 'window',\n property: 'isNaN',\n message: 'Please use Number.isNaN instead',\n },\n {\n property: '__defineGetter__',\n message: 'Please use Object.defineProperty instead.',\n },\n {\n property: '__defineSetter__',\n message: 'Please use Object.defineProperty instead.',\n },\n {\n object: 'Math',\n property: 'pow',\n message: 'Use the exponentiation operator (**) instead.',\n },\n ],\n\n // disallow use of assignment in return statement\n // https://eslint.org/docs/rules/no-return-assign\n 'no-return-assign': ['error', 'always'],\n\n // disallow redundant `return await`\n // https://eslint.org/docs/rules/no-return-await\n 'no-return-await': 'error',\n\n // disallow use of `javascript:` urls.\n // https://eslint.org/docs/rules/no-script-url\n 'no-script-url': 'error',\n\n // disallow self assignment\n // https://eslint.org/docs/rules/no-self-assign\n 'no-self-assign': [\n 'error',\n {\n props: true,\n },\n ],\n\n // disallow comparisons where both sides are exactly the same\n // https://eslint.org/docs/rules/no-self-compare\n 'no-self-compare': 'error',\n\n // disallow use of comma operator\n // https://eslint.org/docs/rules/no-sequences\n 'no-sequences': 'error',\n\n // restrict what can be thrown as an exception\n // https://eslint.org/docs/rules/no-throw-literal\n 'no-throw-literal': 'error',\n\n // disallow unmodified conditions of loops\n // https://eslint.org/docs/rules/no-unmodified-loop-condition\n 'no-unmodified-loop-condition': 'off',\n\n // disallow usage of expressions in statement position\n // https://eslint.org/docs/rules/no-unused-expressions\n 'no-unused-expressions': [\n 'error',\n {\n allowShortCircuit: false,\n allowTernary: false,\n allowTaggedTemplates: false,\n },\n ],\n\n // disallow unused labels\n // https://eslint.org/docs/rules/no-unused-labels\n 'no-unused-labels': 'error',\n\n // disallow unnecessary .call() and .apply()\n // https://eslint.org/docs/rules/no-useless-call\n 'no-useless-call': 'off',\n\n // Disallow unnecessary catch clauses\n // https://eslint.org/docs/rules/no-useless-catch\n 'no-useless-catch': 'error',\n\n // disallow useless string concatenation\n // https://eslint.org/docs/rules/no-useless-concat\n 'no-useless-concat': 'error',\n\n // disallow unnecessary string escaping\n // https://eslint.org/docs/rules/no-useless-escape\n 'no-useless-escape': 'error',\n\n // disallow redundant return; keywords\n // https://eslint.org/docs/rules/no-useless-return\n 'no-useless-return': 'error',\n\n // disallow use of void operator\n // https://eslint.org/docs/rules/no-void\n 'no-void': 'error',\n\n // disallow usage of configurable warning terms in comments: e.g. todo\n // https://eslint.org/docs/rules/no-warning-comments\n 'no-warning-comments': [\n 'off',\n {\n terms: [\n 'todo',\n 'fixme',\n 'xxx',\n ],\n location: 'start',\n },\n ],\n\n // disallow use of the with statement\n // https://eslint.org/docs/rules/no-with\n 'no-with': 'error',\n\n // require using Error objects as Promise rejection reasons\n // https://eslint.org/docs/rules/prefer-promise-reject-errors\n 'prefer-promise-reject-errors': ['error', { allowEmptyReject: true }],\n\n // Suggest using named capture group in regular expression\n // https://eslint.org/docs/rules/prefer-named-capture-group\n 'prefer-named-capture-group': 'off',\n\n // Prefer Object.hasOwn() over Object.prototype.hasOwnProperty.call()\n // https://eslint.org/docs/rules/prefer-object-has-own\n 'prefer-object-has-own': 'error',\n\n // https://eslint.org/docs/rules/prefer-regex-literals\n 'prefer-regex-literals': [\n 'error',\n {\n disallowRedundantWrapping: true,\n },\n ],\n\n // require use of the second argument for parseInt()\n // https://eslint.org/docs/rules/radix\n radix: 'error',\n\n // require `await` in `async function`\n // (note: this is a horrible rule that should never be used)\n // https://eslint.org/docs/rules/require-await\n 'require-await': 'off',\n\n // Enforce the use of u flag on RegExp\n // https://eslint.org/docs/rules/require-unicode-regexp\n 'require-unicode-regexp': 'off',\n\n // requires to declare all vars on top of their containing scope\n // https://eslint.org/docs/rules/vars-on-top\n 'vars-on-top': 'error',\n\n // require immediate function invocation to be wrapped in parentheses\n // https://eslint.style/rules/default/wrap-iife\n '@stylistic/wrap-iife': [\n 'error',\n 'outside',\n { functionPrototypeMethods: false },\n ],\n\n // require or disallow Yoda conditions\n // https://eslint.org/docs/rules/yoda\n yoda: 'error',\n },\n} satisfies Linter.Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/errors',\n rules: {\n // Enforce “for” loop update clause moving the counter in the right direction\n // https://eslint.org/docs/rules/for-direction\n 'for-direction': 'error',\n\n // Enforces that a return statement is present in property getters\n // https://eslint.org/docs/rules/getter-return\n 'getter-return': ['error', { allowImplicit: true }],\n\n // disallow using an async function as a Promise executor\n // https://eslint.org/docs/rules/no-async-promise-executor\n 'no-async-promise-executor': 'error',\n\n // Disallow await inside of loops\n // https://eslint.org/docs/rules/no-await-in-loop\n 'no-await-in-loop': 'error',\n\n // Disallow comparisons to negative zero\n // https://eslint.org/docs/rules/no-compare-neg-zero\n 'no-compare-neg-zero': 'error',\n\n // disallow assignment in conditional expressions\n // https://eslint.org/docs/rules/no-cond-assign\n 'no-cond-assign': ['error', 'always'],\n\n // disallow use of console\n // https://eslint.org/docs/rules/no-console\n 'no-console': [\n 'error',\n {\n allow: [\n 'info',\n 'warn',\n 'error',\n ],\n },\n ],\n\n // Disallows expressions where the operation doesn't affect the value\n // https://eslint.org/docs/rules/no-constant-binary-expression\n 'no-constant-binary-expression': 'error',\n\n // disallow use of constant expressions in conditions\n // https://eslint.org/docs/rules/no-constant-condition\n 'no-constant-condition': 'error',\n\n // disallow control characters in regular expressions\n // https://eslint.org/docs/rules/no-control-regex\n 'no-control-regex': 'error',\n\n // disallow use of debugger\n // https://eslint.org/docs/rules/no-debugger\n 'no-debugger': 'error',\n\n // disallow duplicate arguments in functions\n // https://eslint.org/docs/rules/no-dupe-args\n 'no-dupe-args': 'error',\n\n // Disallow duplicate conditions in if-else-if chains\n // https://eslint.org/docs/rules/no-dupe-else-if\n 'no-dupe-else-if': 'error',\n\n // disallow duplicate keys when creating object literals\n // https://eslint.org/docs/rules/no-dupe-keys\n 'no-dupe-keys': 'error',\n\n // disallow a duplicate case label.\n // https://eslint.org/docs/rules/no-duplicate-case\n 'no-duplicate-case': 'error',\n\n // disallow empty statements\n // https://eslint.org/docs/rules/no-empty\n 'no-empty': 'error',\n\n // disallow the use of empty character classes in regular expressions\n // https://eslint.org/docs/rules/no-empty-character-class\n 'no-empty-character-class': 'error',\n\n // disallow assigning to the exception in a catch block\n // https://eslint.org/docs/rules/no-ex-assign\n 'no-ex-assign': 'error',\n\n // disallow double-negation boolean casts in a boolean context\n // https://eslint.org/docs/rules/no-extra-boolean-cast\n 'no-extra-boolean-cast': 'error',\n\n // disallow unnecessary parentheses\n // https://eslint.style/rules/default/no-extra-parens\n '@stylistic/no-extra-parens': [\n 'off',\n 'all',\n {\n conditionalAssign: true,\n nestedBinaryExpressions: false,\n returnAssign: false,\n enforceForArrowConditionals: false,\n },\n ],\n\n // disallow unnecessary semicolons\n // https://eslint.style/rules/default/no-extra-semi\n '@stylistic/no-extra-semi': 'error',\n\n // disallow overwriting functions written as function declarations\n // https://eslint.org/docs/rules/no-func-assign\n 'no-func-assign': 'error',\n\n // disallow assigning to imported bindings\n // https://eslint.org/docs/rules/no-import-assign\n 'no-import-assign': 'error',\n\n // disallow function or variable declarations in nested blocks\n // https://eslint.org/docs/rules/no-inner-declarations\n 'no-inner-declarations': 'error',\n\n // disallow invalid regular expression strings in the RegExp constructor\n // https://eslint.org/docs/rules/no-invalid-regexp\n 'no-invalid-regexp': 'error',\n\n // disallow irregular whitespace outside of strings and comments\n // https://eslint.org/docs/rules/no-irregular-whitespace\n 'no-irregular-whitespace': 'error',\n\n // Disallow Number Literals That Lose Precision\n // https://eslint.org/docs/rules/no-loss-of-precision\n 'no-loss-of-precision': 'error',\n\n // Disallow characters which are made with multiple code points in character class syntax\n // https://eslint.org/docs/rules/no-misleading-character-class\n 'no-misleading-character-class': 'error',\n\n // disallow the use of object properties of the global object (Math and JSON) as functions\n // https://eslint.org/docs/rules/no-obj-calls\n 'no-obj-calls': 'error',\n\n // Disallow new operators with global non-constructor functions\n // https://eslint.org/docs/rules/no-new-native-nonconstructor\n 'no-new-native-nonconstructor': 'error',\n\n // Disallow returning values from Promise executor functions\n // https://eslint.org/docs/rules/no-promise-executor-return\n 'no-promise-executor-return': 'error',\n\n // disallow use of Object.prototypes builtins directly\n // https://eslint.org/docs/rules/no-prototype-builtins\n 'no-prototype-builtins': 'error',\n\n // disallow multiple spaces in a regular expression literal\n // https://eslint.org/docs/rules/no-regex-spaces\n 'no-regex-spaces': 'error',\n\n // Disallow returning values from setters\n // https://eslint.org/docs/rules/no-setter-return\n 'no-setter-return': 'error',\n\n // disallow sparse arrays\n // https://eslint.org/docs/rules/no-sparse-arrays\n 'no-sparse-arrays': 'error',\n\n // Disallow template literal placeholder syntax in regular strings\n // https://eslint.org/docs/rules/no-template-curly-in-string\n 'no-template-curly-in-string': 'error',\n\n // Avoid code that looks like two expressions but is actually one\n // https://eslint.org/docs/rules/no-unexpected-multiline\n 'no-unexpected-multiline': 'error',\n\n // disallow unreachable statements after a return, throw, continue, or break statement\n // https://eslint.org/docs/rules/no-unreachable\n 'no-unreachable': 'error',\n\n // Disallow loops with a body that allows only one iteration\n // https://eslint.org/docs/rules/no-unreachable-loop\n 'no-unreachable-loop': [\n 'error',\n {\n ignore: [],\n // WhileStatement, DoWhileStatement, ForStatement, ForInStatement, ForOfStatement\n },\n ],\n\n // disallow return/throw/break/continue inside finally blocks\n // https://eslint.org/docs/rules/no-unsafe-finally\n 'no-unsafe-finally': 'error',\n\n // disallow negating the left operand of relational operators\n // https://eslint.org/docs/rules/no-unsafe-negation\n 'no-unsafe-negation': 'error',\n\n // disallow use of optional chaining in contexts where the undefined value is not allowed\n // https://eslint.org/docs/rules/no-unsafe-optional-chaining\n 'no-unsafe-optional-chaining': ['error', { disallowArithmeticOperators: true }],\n\n // Disallow Unused Private Class Members\n // https://eslint.org/docs/rules/no-unused-private-class-members\n 'no-unused-private-class-members': 'error',\n\n // Disallow useless backreferences in regular expressions\n // https://eslint.org/docs/rules/no-useless-backreference\n 'no-useless-backreference': 'error',\n\n // Disallow assignments that can lead to race conditions due to usage of await or yield\n // https://eslint.org/docs/rules/require-atomic-updates\n // note: not enabled because it is very buggy\n 'require-atomic-updates': 'off',\n\n // disallow comparisons with the value NaN\n // https://eslint.org/docs/rules/use-isnan\n 'use-isnan': 'error',\n\n // ensure that the results of typeof are compared against a valid string\n // https://eslint.org/docs/rules/valid-typeof\n 'valid-typeof': ['error', { requireStringLiterals: true }],\n },\n} satisfies Linter.Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/es6',\n rules: {\n // enforces no braces where they can be omitted\n // https://eslint.org/docs/rules/arrow-body-style\n 'arrow-body-style': [\n 'error',\n 'as-needed',\n {\n requireReturnForObjectLiteral: false,\n },\n ],\n\n // require parens in arrow function arguments\n // https://eslint.style/rules/default/arrow-parens\n '@stylistic/arrow-parens': ['error', 'always'],\n\n // require space before/after arrow function's arrow\n // https://eslint.style/rules/default/arrow-spacing\n '@stylistic/arrow-spacing': ['error', { before: true, after: true }],\n\n // verify super() callings in constructors\n // https://eslint.org/docs/rules/constructor-super\n 'constructor-super': 'error',\n\n // enforce the spacing around the * in generator functions\n // https://eslint.style/rules/default/generator-star-spacing\n '@stylistic/generator-star-spacing': ['error', { before: false, after: true }],\n\n // disallow modifying variables of class declarations\n // https://eslint.org/docs/rules/no-class-assign\n 'no-class-assign': 'error',\n\n // disallow arrow functions where they could be confused with comparisons\n // https://eslint.style/rules/default/no-confusing-arrow\n '@stylistic/no-confusing-arrow': [\n 'error',\n {\n allowParens: true,\n },\n ],\n\n // disallow modifying variables that are declared using const\n // https://eslint.org/docs/rules/no-const-assign\n 'no-const-assign': 'error',\n\n // disallow duplicate class members\n // https://eslint.org/docs/rules/no-dupe-class-members\n 'no-dupe-class-members': 'error',\n\n // disallow importing from the same path more than once\n // https://eslint.org/docs/rules/no-duplicate-imports\n // replaced by https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-duplicates.md\n 'no-duplicate-imports': 'off',\n\n // Disallow specified names in exports\n // https://eslint.org/docs/rules/no-restricted-exports\n 'no-restricted-exports': [\n 'error',\n {\n restrictedNamedExports: [\n 'default', // use `export default` to provide a default export\n 'then', // this will cause tons of confusion when your module is dynamically `import()`ed, and will break in most node ESM versions\n ],\n },\n ],\n\n // disallow specific imports\n // https://eslint.org/docs/rules/no-restricted-imports\n 'no-restricted-imports': [\n 'off',\n {\n paths: [],\n patterns: [],\n },\n ],\n\n // disallow to use this/super before super() calling in constructors.\n // https://eslint.org/docs/rules/no-this-before-super\n 'no-this-before-super': 'error',\n\n // disallow useless computed property keys\n // https://eslint.org/docs/rules/no-useless-computed-key\n 'no-useless-computed-key': 'error',\n\n // disallow unnecessary constructor\n // https://eslint.org/docs/rules/no-useless-constructor\n 'no-useless-constructor': 'error',\n\n // disallow renaming import, export, and destructured assignments to the same name\n // https://eslint.org/docs/rules/no-useless-rename\n 'no-useless-rename': [\n 'error',\n {\n ignoreDestructuring: false,\n ignoreImport: false,\n ignoreExport: false,\n },\n ],\n\n // require let or const instead of var\n // https://eslint.org/docs/rules/no-var\n 'no-var': 'error',\n\n // require method and property shorthand syntax for object literals\n // https://eslint.org/docs/rules/object-shorthand\n 'object-shorthand': [\n 'error',\n 'always',\n {\n ignoreConstructors: false,\n avoidQuotes: true,\n },\n ],\n\n // suggest using arrow functions as callbacks\n // https://eslint.org/docs/rules/prefer-arrow-callback\n 'prefer-arrow-callback': [\n 'error',\n {\n allowNamedFunctions: false,\n allowUnboundThis: true,\n },\n ],\n\n // suggest using of const declaration for variables that are never modified after declared\n // https://eslint.org/docs/rules/prefer-const\n 'prefer-const': [\n 'error',\n {\n destructuring: 'any',\n ignoreReadBeforeAssign: true,\n },\n ],\n\n // Prefer destructuring from arrays and objects\n // https://eslint.org/docs/rules/prefer-destructuring\n 'prefer-destructuring': [\n 'error',\n {\n VariableDeclarator: {\n array: false,\n object: true,\n },\n AssignmentExpression: {\n array: true,\n object: false,\n },\n },\n {\n enforceForRenamedProperties: false,\n },\n ],\n\n // disallow parseInt() in favor of binary, octal, and hexadecimal literals\n // https://eslint.org/docs/rules/prefer-numeric-literals\n 'prefer-numeric-literals': 'error',\n\n // use rest parameters instead of arguments\n // https://eslint.org/docs/rules/prefer-rest-params\n 'prefer-rest-params': 'error',\n\n // suggest using the spread syntax instead of .apply()\n // https://eslint.org/docs/rules/prefer-spread\n 'prefer-spread': 'error',\n\n // suggest using template literals instead of string concatenation\n // https://eslint.org/docs/rules/prefer-template\n 'prefer-template': 'error',\n\n // disallow generator functions that do not have yield\n // https://eslint.org/docs/rules/require-yield\n 'require-yield': 'error',\n\n // enforce spacing between object rest-spread\n // https://eslint.style/rules/default/rest-spread-spacing\n '@stylistic/rest-spread-spacing': ['error', 'never'],\n\n // import sorting\n // https://eslint.org/docs/rules/sort-imports\n 'sort-imports': [\n 'off',\n {\n ignoreCase: false,\n ignoreDeclarationSort: false,\n ignoreMemberSort: false,\n memberSyntaxSortOrder: [\n 'none',\n 'all',\n 'multiple',\n 'single',\n ],\n },\n ],\n\n // require a Symbol description\n // https://eslint.org/docs/rules/symbol-description\n 'symbol-description': 'error',\n\n // enforce usage of spacing in template strings\n // https://eslint.style/rules/default/template-curly-spacing\n '@stylistic/template-curly-spacing': 'error',\n\n // enforce spacing around the * in yield* expressions\n // https://eslint.style/rules/default/yield-star-spacing\n '@stylistic/yield-star-spacing': ['error', 'after'],\n },\n} satisfies Linter.Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/imports',\n rules: {\n // Static analysis:\n\n // ensure imports point to files/modules that can be resolved\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-unresolved.md\n 'import-x/no-unresolved': [\n 'error', { commonjs: true, caseSensitive: true },\n ],\n\n // ensure named imports coupled with named exports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/named.md\n 'import-x/named': 'error',\n\n // ensure default import coupled with default export\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/default.md\n 'import-x/default': 'off',\n\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/namespace.md\n 'import-x/namespace': 'off',\n\n // Helpful warnings:\n\n // disallow invalid exports, e.g. multiple defaults\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/export.md\n 'import-x/export': 'error',\n\n // do not allow a default import name to match a named export\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-named-as-default.md\n 'import-x/no-named-as-default': 'error',\n\n // warn on accessing default export property names that are also named exports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-named-as-default-member.md\n 'import-x/no-named-as-default-member': 'error',\n\n // disallow use of jsdoc-marked-deprecated imports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-deprecated.md\n 'import-x/no-deprecated': 'off',\n\n // Forbid the use of extraneous packages\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-extraneous-dependencies.md\n // paths are treated both as absolute paths, and relative to process.cwd()\n 'import-x/no-extraneous-dependencies': [\n 'error',\n {\n devDependencies: [\n 'test/**', // tape, common npm pattern\n 'tests/**', // also common npm pattern\n 'spec/**', // mocha, rspec-like pattern\n '**/__tests__/**', // jest pattern\n '**/__mocks__/**', // jest pattern\n 'test.{js,ts}', // repos with a single test file\n 'test-*.{js,ts}', // repos with multiple top-level test files\n '**/*{.,_}{test,spec}.{js,ts}', // tests where the extension or filename suffix denotes that it is a test\n '**/jest.config.js', // jest config\n '**/jest.setup.js', // jest setup\n '**/vue.config.js', // vue-cli config\n '**/webpack.config.js', // webpack config\n '**/webpack.config.*.js', // webpack config\n '**/rollup.config.js', // rollup config\n '**/rollup.config.*.js', // rollup config\n '**/gulpfile.js', // gulp config\n '**/gulpfile.*.js', // gulp config\n '**/Gruntfile{,.js}', // grunt config\n '**/protractor.conf.js', // protractor config\n '**/protractor.conf.*.js', // protractor config\n '**/karma.conf.js', // karma config\n '**/.eslintrc.js', // eslint config\n ],\n optionalDependencies: false,\n },\n ],\n\n // Forbid mutable exports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-mutable-exports.md\n 'import-x/no-mutable-exports': 'error',\n\n // Module systems:\n\n // disallow require()\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-commonjs.md\n 'import-x/no-commonjs': 'error',\n\n // disallow AMD require/define\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-amd.md\n 'import-x/no-amd': 'error',\n\n // No Node.js builtin modules\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-nodejs-modules.md\n 'import-x/no-nodejs-modules': 'error',\n\n // Style guide:\n\n // disallow non-import statements appearing before import statements\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/first.md\n 'import-x/first': 'error',\n\n // disallow duplicate imports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-duplicates.md\n 'import-x/no-duplicates': 'error',\n\n // disallow namespace imports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-namespace.md\n 'import-x/no-namespace': 'error',\n\n // Ensure consistent use of file extension within the import path\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/extensions.md\n 'import-x/extensions': [\n 'error',\n 'always',\n {\n ignorePackages: true,\n checkTypeImports: true,\n },\n ],\n\n // ensure absolute imports are above relative imports and\n // that unassigned imports are ignored\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/order.md\n 'import-x/order': [\n 'error',\n {\n groups: [\n 'builtin',\n 'external',\n 'internal',\n 'parent',\n 'sibling',\n 'index',\n 'object',\n 'type',\n ],\n 'newlines-between': 'always',\n alphabetize: {\n order: 'asc',\n orderImportKind: 'asc',\n },\n },\n ],\n\n // Require a newline after the last import-x/require in a group\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/newline-after-import.md\n 'import-x/newline-after-import': 'error',\n\n // Require modules with a single export to use a default export\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/prefer-default-export.md\n 'import-x/prefer-default-export': 'error',\n\n // Restrict which files can be imported in a given folder\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-restricted-paths.md\n 'import-x/no-restricted-paths': 'off',\n\n // Forbid modules to have too many dependencies\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/max-dependencies.md\n 'import-x/max-dependencies': ['off', { max: 10 }],\n\n // Forbid import of modules using absolute paths\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-absolute-path.md\n 'import-x/no-absolute-path': 'error',\n\n // Forbid require() calls with expressions\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-dynamic-require.md\n 'import-x/no-dynamic-require': 'error',\n\n // prevent importing the submodules of other modules\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-internal-modules.md\n 'import-x/no-internal-modules': [\n 'off',\n {\n allow: [],\n },\n ],\n\n // Warn if a module could be mistakenly parsed as a script by a consumer\n // leveraging Unambiguous JavaScript Grammar\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/unambiguous.md\n // this should not be enabled until this proposal has at least been *presented* to TC39.\n // At the moment, it's not a thing.\n 'import-x/unambiguous': 'off',\n\n // Forbid Webpack loader syntax in imports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-webpack-loader-syntax.md\n 'import-x/no-webpack-loader-syntax': 'error',\n\n // Prevent unassigned imports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-unassigned-import.md\n // importing for side effects is perfectly acceptable, if you need side effects.\n 'import-x/no-unassigned-import': 'off',\n\n // Prevent importing the default as if it were named\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-named-default.md\n 'import-x/no-named-default': 'error',\n\n // Reports if a module's default export is unnamed\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-anonymous-default-export.md\n 'import-x/no-anonymous-default-export': [\n 'off',\n {\n allowArray: false,\n allowArrowFunction: false,\n allowAnonymousClass: false,\n allowAnonymousFunction: false,\n allowLiteral: false,\n allowObject: false,\n },\n ],\n\n // This rule enforces that all exports are declared at the bottom of the file.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/exports-last.md\n 'import-x/exports-last': 'error',\n\n // Reports when named exports are not grouped together in a single export declaration\n // or when multiple assignments to CommonJS module.exports or exports object are present\n // in a single file.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/group-exports.md\n 'import-x/group-exports': 'off',\n\n // forbid default exports. this is a terrible rule, do not use it.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-default-export.md\n 'import-x/no-default-export': 'off',\n\n // Prohibit named exports. this is a terrible rule, do not use it.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-named-export.md\n 'import-x/no-named-export': 'off',\n\n // Forbid a module from importing itself\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-self-import.md\n 'import-x/no-self-import': 'error',\n\n // Forbid cyclical dependencies between modules\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-cycle.md\n 'import-x/no-cycle': ['error', { maxDepth: '∞' }],\n\n // Ensures that there are no useless path segments\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-useless-path-segments.md\n 'import-x/no-useless-path-segments': ['error', { commonjs: true }],\n\n // dynamic imports require a leading comment with a webpackChunkName\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/dynamic-import-chunkname.md\n 'import-x/dynamic-import-chunkname': [\n 'off',\n {\n importFunctions: [],\n webpackChunknameFormat: '[0-9a-zA-Z-_/.]+',\n },\n ],\n\n // Use this rule to prevent imports to folders in relative parent paths.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-relative-parent-imports.md\n 'import-x/no-relative-parent-imports': 'off',\n\n // Reports modules without any exports, or with unused exports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-unused-modules.md\n 'import-x/no-unused-modules': [\n 'error',\n {\n ignoreExports: [],\n missingExports: true,\n unusedExports: true,\n },\n ],\n\n // Reports the use of import declarations with CommonJS exports\n // in any module except for the main module.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-import-module-exports.md\n 'import-x/no-import-module-exports': [\n 'error',\n {\n exceptions: [],\n },\n ],\n\n // Use this rule to prevent importing packages through relative paths.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-relative-packages.md\n 'import-x/no-relative-packages': 'error',\n\n // enforce a consistent style for type specifiers (inline or top-level)\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/consistent-type-specifier-style.md\n 'import-x/consistent-type-specifier-style': ['error', 'prefer-top-level'],\n\n // Reports the use of empty named import blocks.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-empty-named-blocks.md\n 'import-x/no-empty-named-blocks': 'error',\n },\n} satisfies Linter.Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/node',\n rules: {\n // enforce return after a callback\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/callback-return.md\n 'n/callback-return': 'off',\n\n // require all requires be top-level\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/global-require.md\n 'n/global-require': 'error',\n\n // enforces error handling in callbacks (node environment)\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/handle-callback-err.md\n 'n/handle-callback-err': 'off',\n\n // disallow use of the Buffer() constructor\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-deprecated-api.md\n 'n/no-deprecated-api': 'error',\n\n // disallow mixing regular variable and require declarations\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-mixed-requires.md\n 'n/no-mixed-requires': ['off', false],\n\n // disallow use of new operator with the require function\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-new-require.md\n 'n/no-new-require': 'error',\n\n // disallow string concatenation with __dirname and __filename\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-path-concat.md\n 'n/no-path-concat': 'error',\n\n // disallow use of process.env\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-process-env.md\n 'n/no-process-env': 'off',\n\n // disallow process.exit()\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-process-exit.md\n 'n/no-process-exit': 'off',\n\n // restrict usage of specified node modules\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-restricted-modules.md\n 'n/no-restricted-modules': 'off',\n\n // disallow use of synchronous methods (off by default)\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-sync.md\n 'n/no-sync': 'off',\n\n // No Node.js builtin modules\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-nodejs-modules.md\n 'import-x/no-nodejs-modules': 'off',\n },\n} satisfies Linter.Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/strict',\n rules: {\n // babel inserts `'use strict';` for us\n strict: ['error', 'never'],\n },\n} satisfies Linter.Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/style',\n rules: {\n // enforce line breaks after opening and before closing array brackets\n // https://eslint.style/rules/default/array-bracket-newline\n '@stylistic/array-bracket-newline': ['error', 'consistent'],\n // object option alternative: { multiline: true, minItems: 3 }\n\n // enforce line breaks between array elements\n // https://eslint.style/rules/default/array-element-newline\n '@stylistic/array-element-newline': ['error', { consistent: true, multiline: true, minItems: 3 }],\n\n // enforce spacing inside array brackets\n // https://eslint.style/rules/default/array-bracket-spacing\n '@stylistic/array-bracket-spacing': ['error', 'never'],\n\n // enforce spacing inside single-line blocks\n // https://eslint.style/rules/default/block-spacing\n '@stylistic/block-spacing': ['error', 'always'],\n\n // enforce one true brace style\n // https://eslint.style/rules/default/brace-style\n '@stylistic/brace-style': [\n 'error',\n '1tbs',\n { allowSingleLine: true },\n ],\n\n // require camel case names\n // https://eslint.org/docs/rules/camelcase\n camelcase: 'error',\n\n // enforce or disallow capitalization of the first letter of a comment\n // https://eslint.org/docs/rules/capitalized-comments\n 'capitalized-comments': [\n 'off',\n 'never',\n {\n line: {\n ignorePattern: '.*',\n ignoreInlineComments: true,\n ignoreConsecutiveComments: true,\n },\n block: {\n ignorePattern: '.*',\n ignoreInlineComments: true,\n ignoreConsecutiveComments: true,\n },\n },\n ],\n\n // require trailing commas in multiline object literals\n // https://eslint.style/rules/default/comma-dangle\n '@stylistic/comma-dangle': [\n 'error',\n {\n arrays: 'always-multiline',\n objects: 'always-multiline',\n imports: 'always-multiline',\n exports: 'always-multiline',\n functions: 'always-multiline',\n enums: 'always-multiline',\n generics: 'always-multiline',\n tuples: 'always-multiline',\n },\n ],\n\n // enforce spacing before and after comma\n // https://eslint.style/rules/default/comma-spacing\n '@stylistic/comma-spacing': ['error', { before: false, after: true }],\n\n // enforce one true comma style\n // https://eslint.style/rules/default/comma-style\n '@stylistic/comma-style': [\n 'error',\n 'last',\n {\n exceptions: {\n ArrayExpression: false,\n ArrayPattern: false,\n ArrowFunctionExpression: false,\n CallExpression: false,\n FunctionDeclaration: false,\n FunctionExpression: false,\n ImportDeclaration: false,\n ObjectExpression: false,\n ObjectPattern: false,\n VariableDeclaration: false,\n NewExpression: false,\n ExportAllDeclaration: false,\n ExportNamedDeclaration: false,\n ImportExpression: false,\n SequenceExpression: false,\n ClassDeclaration: false,\n ClassExpression: false,\n TSDeclareFunction: false,\n TSFunctionType: false,\n TSConstructorType: false,\n TSEmptyBodyFunctionExpression: false,\n TSMethodSignature: false,\n TSCallSignatureDeclaration: false,\n TSConstructSignatureDeclaration: false,\n TSEnumBody: false,\n TSTypeLiteral: false,\n TSInterfaceBody: false,\n TSIndexSignature: false,\n TSInterfaceDeclaration: false,\n TSTupleType: false,\n TSTypeParameterDeclaration: false,\n TSTypeParameterInstantiation: false,\n },\n },\n ],\n\n // disallow padding inside computed properties\n // https://eslint.style/rules/default/computed-property-spacing\n '@stylistic/computed-property-spacing': ['error', 'never'],\n\n // enforces consistent naming when capturing the current execution context\n // https://eslint.org/docs/rules/consistent-this\n 'consistent-this': 'off',\n\n // enforce newline at the end of file, with no multiple empty lines\n // https://eslint.style/rules/default/eol-last\n '@stylistic/eol-last': ['error', 'always'],\n\n // https://eslint.style/rules/default/function-call-argument-newline\n '@stylistic/function-call-argument-newline': ['error', 'consistent'],\n\n // enforce spacing between functions and their invocations\n // https://eslint.style/rules/default/func-call-spacing\n '@stylistic/func-call-spacing': ['error', 'never'],\n\n // requires function names to match the name of the variable or property to which they are\n // assigned\n // https://eslint.org/docs/rules/func-name-matching\n 'func-name-matching': [\n 'off',\n 'always',\n {\n includeCommonJSModuleExports: false,\n considerPropertyDescriptor: true,\n },\n ],\n\n // require function expressions to have a name\n // https://eslint.org/docs/rules/func-names\n 'func-names': 'error',\n\n // enforces use of function declarations or expressions\n // https://eslint.org/docs/rules/func-style\n 'func-style': ['error', 'expression'],\n\n // require line breaks inside function parentheses\n // if there are line breaks between parameters\n // https://eslint.style/rules/default/function-paren-newline\n '@stylistic/function-paren-newline': ['error', 'multiline-arguments'],\n\n // disallow specified identifiers\n // https://eslint.org/docs/rules/id-denylist\n 'id-denylist': 'off',\n\n // this option enforces minimum and maximum identifier lengths\n // (variable names, property names etc.)\n // https://eslint.org/docs/rules/id-length\n 'id-length': 'off',\n\n // require identifiers to match the provided regular expression\n // https://eslint.org/docs/rules/id-match\n 'id-match': 'off',\n\n // Enforce the location of arrow function bodies with implicit returns\n // https://eslint.style/rules/default/implicit-arrow-linebreak\n '@stylistic/implicit-arrow-linebreak': ['error', 'beside'],\n\n // this option sets a specific tab width for your code\n // https://eslint.style/rules/default/indent\n '@stylistic/indent': [\n 'error',\n 4,\n {\n SwitchCase: 1,\n VariableDeclarator: 1,\n outerIIFEBody: 1,\n // MemberExpression: null,\n FunctionDeclaration: {\n parameters: 1,\n body: 1,\n },\n FunctionExpression: {\n parameters: 1,\n body: 1,\n },\n CallExpression: {\n arguments: 1,\n },\n ArrayExpression: 1,\n ObjectExpression: 1,\n ImportDeclaration: 1,\n flatTernaryExpressions: false,\n ignoreComments: false,\n },\n ],\n '@stylistic/indent-binary-ops': ['error', 4],\n\n // specify whether double or single quotes should be used in JSX attributes\n // https://eslint.style/rules/default/jsx-quotes\n '@stylistic/jsx-quotes': ['off', 'prefer-double'],\n\n // enforces spacing between keys and values in object literal properties\n // https://eslint.style/rules/default/key-spacing\n '@stylistic/key-spacing': ['error', { beforeColon: false, afterColon: true }],\n\n // require a space before & after certain keywords\n // https://eslint.style/rules/default/keyword-spacing\n '@stylistic/keyword-spacing': [\n 'error',\n {\n before: true,\n after: true,\n overrides: {\n return: { after: true },\n throw: { after: true },\n case: { after: true },\n },\n },\n ],\n\n // enforce position of line comments\n // https://eslint.style/rules/default/line-comment-position\n '@stylistic/line-comment-position': [\n 'off',\n {\n position: 'above',\n ignorePattern: '',\n applyDefaultIgnorePatterns: true,\n },\n ],\n\n // disallow mixed 'LF' and 'CRLF' as linebreaks\n // https://eslint.style/rules/default/linebreak-style\n '@stylistic/linebreak-style': ['error', 'unix'],\n\n // require or disallow an empty line between class members\n // https://eslint.style/rules/default/lines-between-class-members\n '@stylistic/lines-between-class-members': [\n 'error',\n 'always',\n { exceptAfterSingleLine: false },\n ],\n\n // enforces empty lines around comments\n // https://eslint.style/rules/default/lines-around-comment\n '@stylistic/lines-around-comment': 'off',\n\n // Require or disallow logical assignment logical operator shorthand\n // https://eslint.org/docs/rules/logical-assignment-operators\n 'logical-assignment-operators': [\n 'error',\n 'always',\n {\n enforceForIfStatements: true,\n },\n ],\n\n // specify the maximum depth that blocks can be nested\n // https://eslint.org/docs/rules/max-depth\n 'max-depth': ['off', 4],\n\n // specify the maximum length of a line in your program\n // https://eslint.style/rules/default/max-len\n '@stylistic/max-len': [\n 'error',\n 100,\n 4,\n {\n ignoreUrls: true,\n ignoreComments: false,\n ignoreRegExpLiterals: true,\n ignoreStrings: true,\n ignoreTemplateLiterals: true,\n },\n ],\n\n // specify the max number of lines in a file\n // https://eslint.org/docs/rules/max-lines\n 'max-lines': [\n 'off',\n {\n max: 300,\n skipBlankLines: true,\n skipComments: true,\n },\n ],\n\n // enforce a maximum function length\n // https://eslint.org/docs/rules/max-lines-per-function\n 'max-lines-per-function': [\n 'off',\n {\n max: 50,\n skipBlankLines: true,\n skipComments: true,\n IIFEs: true,\n },\n ],\n\n // specify the maximum depth callbacks can be nested\n // https://eslint.org/docs/rules/max-nested-callbacks\n 'max-nested-callbacks': 'off',\n\n // limits the number of parameters that can be used in the function declaration.\n // https://eslint.org/docs/rules/max-params\n 'max-params': ['off', 3],\n\n // specify the maximum number of statement allowed in a function\n // https://eslint.org/docs/rules/max-statements\n 'max-statements': ['off', 10],\n\n // restrict the number of statements per line\n // https://eslint.style/rules/default/max-statements-per-line\n '@stylistic/max-statements-per-line': ['off', { max: 1 }],\n\n // enforce a particular style for multiline comments\n // https://eslint.style/rules/default/multiline-comment-style\n '@stylistic/multiline-comment-style': ['off', 'starred-block'],\n\n // require multiline ternary\n // https://eslint.style/rules/default/multiline-ternary\n '@stylistic/multiline-ternary': ['error', 'always-multiline'],\n\n // require a capital letter for constructors\n // https://eslint.org/docs/rules/new-cap\n 'new-cap': [\n 'error',\n {\n newIsCap: true,\n newIsCapExceptions: [],\n capIsNew: false,\n capIsNewExceptions: [\n 'Immutable.Map',\n 'Immutable.Set',\n 'Immutable.List',\n ],\n },\n ],\n\n // disallow the omission of parentheses when invoking a constructor with no arguments\n // https://eslint.style/rules/default/new-parens\n '@stylistic/new-parens': 'error',\n\n // enforces new line after each method call in the chain to make it\n // more readable and easy to maintain\n // https://eslint.style/rules/default/newline-per-chained-call\n '@stylistic/newline-per-chained-call': ['error', { ignoreChainWithDepth: 4 }],\n\n // disallow use of the Array constructor\n // https://eslint.org/docs/rules/no-array-constructor\n 'no-array-constructor': 'error',\n\n // disallow use of bitwise operators\n // https://eslint.org/docs/rules/no-bitwise\n 'no-bitwise': 'error',\n\n // disallow use of the continue statement\n // https://eslint.org/docs/rules/no-continue\n 'no-continue': 'error',\n\n // disallow comments inline after code\n // https://eslint.org/docs/rules/no-inline-comments\n 'no-inline-comments': 'off',\n\n // disallow if as the only statement in an else block\n // https://eslint.org/docs/rules/no-lonely-if\n 'no-lonely-if': 'error',\n\n // disallow un-paren'd mixes of different operators\n // httphttps://eslint.style/rules/default/no-mixed-operators\n '@stylistic/no-mixed-operators': [\n 'error',\n {\n // the list of arithmetic groups disallows mixing `%` and `**`\n // with other arithmetic operators.\n groups: [\n ['%', '**'],\n ['%', '+'],\n ['%', '-'],\n ['%', '*'],\n ['%', '/'],\n ['/', '*'],\n [\n '&',\n '|',\n '<<',\n '>>',\n '>>>',\n ],\n [\n '==',\n '!=',\n '===',\n '!==',\n ],\n ['&&', '||'],\n ],\n allowSamePrecedence: false,\n },\n ],\n\n // disallow mixed spaces and tabs for indentation\n // https://eslint.style/rules/default/no-mixed-spaces-and-tabs\n '@stylistic/no-mixed-spaces-and-tabs': 'error',\n\n // disallow use of chained assignment expressions\n // https://eslint.org/docs/rules/no-multi-assign\n 'no-multi-assign': ['error'],\n\n // disallow multiple empty lines\n // only one newline at the end\n // and no new lines at the beginning\n // https://eslint.style/rules/default/no-multiple-empty-lines\n '@stylistic/no-multiple-empty-lines': ['error', { max: 1, maxBOF: 0, maxEOF: 0 }],\n\n // disallow negated conditions\n // https://eslint.org/docs/rules/no-negated-condition\n 'no-negated-condition': 'off',\n\n // disallow nested ternary expressions\n // https://eslint.org/docs/rules/no-nested-ternary\n 'no-nested-ternary': 'error',\n\n // disallow calls to the Object constructor without an argument\n // https://eslint.org/docs/rules/no-object-constructor\n 'no-object-constructor': 'error',\n\n // disallow use of unary operators, ++ and --\n // https://eslint.org/docs/rules/no-plusplus\n 'no-plusplus': 'error',\n\n // disallow certain syntax forms\n // https://eslint.org/docs/rules/no-restricted-syntax\n 'no-restricted-syntax': [\n 'error',\n {\n selector: 'ForInStatement',\n message:\n 'for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array.',\n },\n // {\n // selector: 'ForOfStatement',\n // message:\n // 'iterators/generators require regenerator-runtime,\n // which is too heavyweight for this guide to allow them.\n // Separately, loops should be avoided in favor of array iterations.',\n // },\n {\n selector: 'LabeledStatement',\n message:\n 'Labels are a form of GOTO; using them makes code confusing and hard to maintain and understand.',\n },\n {\n selector: 'WithStatement',\n message:\n '`with` is disallowed in strict mode because it makes code impossible to predict and optimize.',\n },\n ],\n\n // disallow tab characters entirely\n // https://eslint.style/rules/default/no-tabs\n '@stylistic/no-tabs': 'error',\n\n // disallow the use of ternary operators\n // https://eslint.org/docs/rules/no-ternary\n 'no-ternary': 'off',\n\n // disallow trailing whitespace at the end of lines\n // https://eslint.style/rules/default/no-trailing-spaces\n '@stylistic/no-trailing-spaces': [\n 'error',\n {\n skipBlankLines: false,\n ignoreComments: false,\n },\n ],\n\n // disallow dangling underscores in identifiers\n // https://eslint.org/docs/rules/no-underscore-dangle\n 'no-underscore-dangle': [\n 'error',\n {\n allow: [],\n allowAfterThis: false,\n allowAfterSuper: false,\n enforceInMethodNames: true,\n },\n ],\n\n // disallow the use of Boolean literals in conditional expressions\n // also, prefer `a || b` over `a ? a : b`\n // https://eslint.org/docs/rules/no-unneeded-ternary\n 'no-unneeded-ternary': ['error', { defaultAssignment: false }],\n\n // disallow whitespace before properties\n // https://eslint.style/rules/default/no-whitespace-before-property\n '@stylistic/no-whitespace-before-property': 'error',\n\n // enforce the location of single-line statements\n // https://eslint.style/rules/default/nonblock-statement-body-position\n '@stylistic/nonblock-statement-body-position': [\n 'error',\n 'beside',\n { overrides: {} },\n ],\n\n // require padding inside curly braces\n // https://eslint.style/rules/default/object-curly-spacing\n '@stylistic/object-curly-spacing': ['error', 'always'],\n\n // enforce line breaks between braces\n // https://eslint.style/rules/default/object-curly-newline\n '@stylistic/object-curly-newline': [\n 'error',\n {\n ObjectExpression: {\n minProperties: 4,\n multiline: true,\n consistent: true,\n },\n ObjectPattern: {\n minProperties: 4,\n multiline: true,\n consistent: true,\n },\n ImportDeclaration: {\n minProperties: 4,\n multiline: true,\n consistent: true,\n },\n ExportDeclaration: {\n minProperties: 4,\n multiline: true,\n consistent: true,\n },\n },\n ],\n\n // enforce \"same line\" or \"multiple line\" on object properties.\n // https://eslint.style/rules/default/object-property-newline\n '@stylistic/object-property-newline': [\n 'error',\n {\n allowAllPropertiesOnSameLine: true,\n },\n ],\n\n // allow just one var statement per function\n // https://eslint.org/docs/rules/one-var\n 'one-var': ['error', 'never'],\n\n // require a newline around variable declaration\n // https://eslint.style/rules/default/one-var-declaration-per-line\n '@stylistic/one-var-declaration-per-line': ['error', 'always'],\n\n // require assignment operator shorthand where possible or prohibit it entirely\n // https://eslint.org/docs/rules/operator-assignment\n 'operator-assignment': ['error', 'always'],\n\n // Requires operator at the beginning of the line in multiline statements\n // https://eslint.style/rules/default/operator-linebreak\n '@stylistic/operator-linebreak': [\n 'error',\n 'before',\n { overrides: { '=': 'none' } },\n ],\n\n // disallow padding within blocks\n // https://eslint.style/rules/default/padded-blocks\n '@stylistic/padded-blocks': [\n 'error',\n {\n blocks: 'never',\n classes: 'never',\n switches: 'never',\n },\n {\n allowSingleLineBlocks: true,\n },\n ],\n\n // Require or disallow padding lines between statements\n // https://eslint.style/rules/default/padding-line-between-statements\n '@stylistic/padding-line-between-statements': 'off',\n\n // Disallow the use of Math.pow in favor of the ** operator\n // https://eslint.org/docs/rules/prefer-exponentiation-operator\n 'prefer-exponentiation-operator': 'error',\n\n // Prefer use of an object spread over Object.assign\n // https://eslint.org/docs/rules/prefer-object-spread\n 'prefer-object-spread': 'error',\n\n // require quotes around object literal property names\n // https://eslint.style/rules/default/quote-props\n '@stylistic/quote-props': [\n 'error',\n 'as-needed',\n { keywords: false, unnecessary: true, numbers: false },\n ],\n\n // specify whether double or single quotes should be used\n // https://eslint.style/rules/default/quotes\n '@stylistic/quotes': [\n 'error',\n 'single',\n { avoidEscape: true },\n ],\n\n // require or disallow use of semicolons instead of ASI\n // https://eslint.style/rules/default/semi\n '@stylistic/semi': ['error', 'always'],\n\n // enforce spacing before and after semicolons\n // https://eslint.style/rules/default/semi-spacing\n '@stylistic/semi-spacing': ['error', { before: false, after: true }],\n\n // Enforce location of semicolons\n // https://eslint.style/rules/default/semi-style\n '@stylistic/semi-style': ['error', 'last'],\n\n // requires object keys to be sorted\n // https://eslint.org/docs/rules/sort-keys\n 'sort-keys': [\n 'off',\n 'asc',\n { caseSensitive: false, natural: true },\n ],\n\n // sort variables within the same declaration block\n // https://eslint.org/docs/rules/sort-vars\n 'sort-vars': 'off',\n\n // require or disallow space before blocks\n // https://eslint.style/rules/default/space-before-blocks\n '@stylistic/space-before-blocks': 'error',\n\n // require or disallow space before function opening parenthesis\n // https://eslint.style/rules/default/space-before-function-paren\n '@stylistic/space-before-function-paren': [\n 'error',\n {\n anonymous: 'always',\n named: 'never',\n asyncArrow: 'always',\n },\n ],\n\n // require or disallow spaces inside parentheses\n // https://eslint.style/rules/default/space-in-parens\n '@stylistic/space-in-parens': ['error', 'never'],\n\n // require spaces around operators\n // https://eslint.style/rules/default/space-infix-ops\n '@stylistic/space-infix-ops': 'error',\n\n // Require or disallow spaces before/after unary operators\n // https://eslint.style/rules/default/space-unary-ops\n '@stylistic/space-unary-ops': [\n 'error',\n {\n words: true,\n nonwords: false,\n overrides: {},\n },\n ],\n\n // require or disallow a space immediately following the // or /* in a comment\n // https://eslint.style/rules/default/spaced-comment\n '@stylistic/spaced-comment': [\n 'error',\n 'always',\n {\n line: {\n exceptions: ['-', '+'],\n markers: [\n '=',\n '!',\n '/',\n ], // space here to support sprockets directives, slash for TS /// comments\n },\n block: {\n exceptions: ['-', '+'],\n markers: [\n '=',\n '!',\n ':',\n '::',\n ], // space here to support sprockets directives and flow comment types\n balanced: true,\n },\n },\n ],\n\n // Enforce spacing around colons of switch statements\n // https://eslint.style/rules/default/switch-colon-spacing\n '@stylistic/switch-colon-spacing': ['error', { after: true, before: false }],\n\n // Require or disallow spacing between template tags and their literals\n // https://eslint.style/rules/default/template-tag-spacing\n '@stylistic/template-tag-spacing': ['error', 'never'],\n\n // require or disallow the Unicode Byte Order Mark\n // https://eslint.org/docs/rules/unicode-bom\n 'unicode-bom': ['error', 'never'],\n\n // require regex literals to be wrapped in parentheses\n // https://eslint.style/rules/default/wrap-regex\n '@stylistic/wrap-regex': 'off',\n },\n} satisfies Linter.Config;\n","import confusingBrowserGlobals from 'confusing-browser-globals';\n\nimport type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/variables',\n rules: {\n // enforce or disallow variable initializations at definition\n // https://eslint.org/docs/rules/init-declarations\n 'init-declarations': 'off',\n\n // disallow deletion of variables\n // https://eslint.org/docs/rules/no-delete-var\n 'no-delete-var': 'error',\n\n // disallow labels that share a name with a variable\n // https://eslint.org/docs/rules/no-label-var\n 'no-label-var': 'error',\n\n // disallow specific globals\n // https://eslint.org/docs/rules/no-restricted-globals\n 'no-restricted-globals': [\n 'error',\n {\n name: 'isFinite',\n message:\n 'Use Number.isFinite instead https://github.com/airbnb/javascript#standard-library--isfinite',\n },\n {\n name: 'isNaN',\n message:\n 'Use Number.isNaN instead https://github.com/airbnb/javascript#standard-library--isnan',\n },\n ...confusingBrowserGlobals.map((g) => ({\n name: g,\n message: `Use window.${g} instead. https://github.com/facebook/create-react-app/blob/HEAD/packages/confusing-browser-globals/README.md`,\n })),\n ],\n\n // disallow declaration of variables already declared in the outer scope\n // https://eslint.org/docs/rules/no-shadow\n 'no-shadow': 'error',\n\n // disallow shadowing of names such as arguments\n // https://eslint.org/docs/rules/no-shadow-restricted-names\n 'no-shadow-restricted-names': 'error',\n\n // disallow use of undeclared variables unless mentioned in a /*global */ block\n // https://eslint.org/docs/rules/no-undef\n 'no-undef': 'error',\n\n // disallow use of undefined when initializing variables\n // https://eslint.org/docs/rules/no-undef-init\n 'no-undef-init': 'error',\n\n // disallow use of undefined variable\n // https://eslint.org/docs/rules/no-undefined\n 'no-undefined': 'off',\n\n // disallow declaration of variables that are not used in the code\n // https://eslint.org/docs/rules/no-unused-vars\n 'no-unused-vars': [\n 'error',\n { vars: 'all', args: 'after-used', ignoreRestSiblings: true },\n ],\n\n // disallow use of variables before they are defined\n // https://eslint.org/docs/rules/no-use-before-define\n 'no-use-before-define': [\n 'error',\n { functions: true, classes: true, variables: true },\n ],\n },\n} satisfies Linter.Config;\n","import globals from 'globals';\n\nimport type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/browser',\n languageOptions: {\n globals: globals.browser,\n },\n} as const satisfies Linter.Config;\n","import stylistic from '@stylistic/eslint-plugin';\nimport importx from 'eslint-plugin-import-x';\nimport ts from 'typescript-eslint';\n\nimport type { Linter } from 'eslint';\n\ntype Config = Linter.Config;\ntype Plugin = NonNullable<Config['plugins']>[string];\ntype Parser = NonNullable<Config['languageOptions']>['parser'];\n\nexport default {\n name: '@rhyster/eslint-config/general',\n plugins: {\n '@typescript-eslint': ts.plugin as Plugin,\n '@stylistic': stylistic as Plugin,\n 'import-x': importx as unknown as Plugin,\n },\n languageOptions: {\n parser: ts.parser as Parser,\n parserOptions: {\n projectService: true,\n },\n },\n settings: {\n 'import-x/parsers': {\n espree: [\n '.js',\n '.mjs',\n ],\n '@typescript-eslint/parser': [\n '.ts',\n '.d.ts',\n ],\n },\n 'import-x/resolver': {\n node: {\n extensions: [\n '.mjs',\n '.js',\n '.json',\n '.ts',\n '.d.ts',\n ],\n },\n },\n 'import-x/extensions': [\n '.js',\n '.mjs',\n '.ts',\n '.d.ts',\n ],\n 'import-x/core-modules': [],\n 'import-x/ignore': [\n 'node_modules', '\\\\.(coffee|scss|css|less|hbs|svg|json)$',\n ],\n 'import-x/external-module-folders': [\n 'node_modules',\n 'node_modules/@types',\n ],\n },\n} as const satisfies Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/typescript',\n rules: {\n // https://typescript-eslint.io/rules/naming-convention\n '@typescript-eslint/naming-convention': 'error',\n camelcase: 'off',\n\n // https://typescript-eslint.io/rules/default-param-last\n '@typescript-eslint/default-param-last': 'error',\n 'default-param-last': 'off',\n\n // https://typescript-eslint.io/rules/dot-notation\n '@typescript-eslint/dot-notation': 'error',\n 'dot-notation': 'off',\n\n // https://typescript-eslint.io/rules/no-array-constructor\n '@typescript-eslint/no-array-constructor': 'error',\n 'no-array-constructor': 'off',\n\n // https://typescript-eslint.io/rules/no-empty-function\n '@typescript-eslint/no-empty-function': 'error',\n 'no-empty-function': 'off',\n\n // https://typescript-eslint.io/rules/no-implied-eval\n '@typescript-eslint/no-implied-eval': 'error',\n 'no-implied-eval': 'off',\n 'no-new-func': 'off',\n\n // https://typescript-eslint.io/rules/no-loop-func\n '@typescript-eslint/no-loop-func': 'error',\n 'no-loop-func': 'off',\n\n // https://typescript-eslint.io/rules/no-magic-numbers\n '@typescript-eslint/no-magic-numbers': 'off',\n 'no-magic-numbers': 'off',\n\n // https://typescript-eslint.io/rules/no-shadow\n '@typescript-eslint/no-shadow': 'error',\n 'no-shadow': 'off',\n\n // https://typescript-eslint.io/rules/only-throw-error\n '@typescript-eslint/only-throw-error': 'error',\n 'no-throw-literal': 'off',\n\n // https://typescript-eslint.io/rules/no-unused-expressions\n '@typescript-eslint/no-unused-expressions': 'error',\n 'no-unused-expressions': 'off',\n\n // https://typescript-eslint.io/rules/no-unused-vars\n '@typescript-eslint/no-unused-vars': 'error',\n 'no-unused-vars': 'off',\n\n // https://typescript-eslint.io/rules/no-use-before-define\n '@typescript-eslint/no-use-before-define': 'error',\n 'no-use-before-define': 'off',\n\n // https://typescript-eslint.io/rules/no-useless-constructor\n '@typescript-eslint/no-useless-constructor': 'error',\n 'no-useless-constructor': 'off',\n\n // https://typescript-eslint.io/rules/prefer-promise-reject-errors\n '@typescript-eslint/prefer-promise-reject-errors': 'error',\n 'prefer-promise-reject-errors': 'off',\n\n // https://typescript-eslint.io/rules/require-await\n '@typescript-eslint/require-await': 'off',\n 'require-await': 'off',\n\n // https://typescript-eslint.io/rules/return-await\n '@typescript-eslint/return-await': ['error', 'in-try-catch'],\n 'no-return-await': 'off',\n\n // https://typescript-eslint.io/rules/no-dupe-class-members\n // checked by the TypeScript compiler\n 'no-dupe-class-members': 'off',\n\n // https://typescript-eslint.io/rules/no-redeclare\n // checked by the TypeScript compiler\n 'no-redeclare': 'off',\n\n // https://typescript-eslint.io/troubleshooting/typed-linting/performance/#eslint-plugin-import\n 'import-x/named': 'off',\n 'import-x/namespace': 'off',\n 'import-x/default': 'off',\n 'import-x/no-named-as-default-member': 'off',\n 'import-x/no-unresolved': 'off',\n\n // https://typescript-eslint.io/rules/strict-boolean-expressions/\n '@typescript-eslint/strict-boolean-expressions': 'error',\n },\n} satisfies Linter.Config;\n","import vuePlugin from 'eslint-plugin-vue';\nimport ts from 'typescript-eslint';\nimport vueParser from 'vue-eslint-parser';\n\nimport general from './general.ts';\n\nimport type { Linter } from 'eslint';\n\ntype Config = Linter.Config;\ntype Plugin = NonNullable<Config['plugins']>[string];\ntype Parser = NonNullable<Config['languageOptions']>['parser'];\n\nconst generalVue = {\n ...general,\n name: '@rhyster/eslint-config/airbnb/general-vue',\n plugins: {\n ...general.plugins,\n vue: vuePlugin as Plugin,\n },\n settings: {\n ...general.settings,\n 'import-x/parsers': {\n ...general.settings['import-x/parsers'],\n 'vue-eslint-parser': [\n '.vue',\n ],\n },\n 'import-x/resolver': {\n node: {\n extensions: [\n ...general.settings['import-x/resolver'].node.extensions,\n '.vue',\n ],\n },\n },\n 'import-x/extensions': [\n ...general.settings['import-x/extensions'],\n '.vue',\n ],\n },\n} as const satisfies Config;\n\nconst setupVue: Config = {\n name: '@rhyster/eslint-config/setup-vue',\n languageOptions: {\n parser: vueParser,\n parserOptions: {\n projectService: true,\n parser: ts.parser as Parser,\n extraFileExtensions: ['.vue'],\n },\n },\n} as const satisfies Config;\n\nconst vueConfigs: Config = {\n name: '@rhyster/eslint-config/vue-configs',\n rules: {\n 'vue/html-indent': ['error', 4],\n 'import-x/no-unused-modules': 'off',\n },\n} as const satisfies Config;\n\nexport default [\n generalVue,\n ...vuePlugin.configs['flat/recommended'] as unknown as Config[],\n setupVue,\n vueConfigs,\n] satisfies Config[];\n","import js from '@eslint/js';\nimport nodePlugin from 'eslint-plugin-n';\nimport globals from 'globals';\nimport ts from 'typescript-eslint';\n\nimport bestPractices from './rules/airbnb/best-practices.ts';\nimport errors from './rules/airbnb/errors.ts';\nimport es6 from './rules/airbnb/es6.ts';\nimport imports from './rules/airbnb/imports.ts';\nimport nodeRules from './rules/airbnb/node.ts';\nimport strict from './rules/airbnb/strict.ts';\nimport style from './rules/airbnb/style.ts';\nimport variables from './rules/airbnb/variables.ts';\nimport browserRules from './rules/browser.ts';\nimport general from './rules/general.ts';\nimport typescript from './rules/typescript.ts';\nimport vueRules from './rules/vue.ts';\n\nimport type { Linter } from 'eslint';\n\ntype Config = Linter.Config;\n\nconst coreConfigs = [\n js.configs.recommended,\n general,\n ...ts.configs.strictTypeChecked as unknown as Config[],\n ...ts.configs.stylisticTypeChecked as unknown as Config[],\n bestPractices,\n errors,\n style,\n variables,\n es6,\n imports,\n strict,\n typescript,\n] as const satisfies Config[];\n\nexport const core = coreConfigs.map((config) => ({\n ...config,\n files: ['src/**/*.ts'],\n})) satisfies Config[];\n\nexport const node = [\n ...core,\n {\n name: '@rhyster/eslint-config/setup-node',\n files: ['src/**/*.ts'],\n languageOptions: {\n globals: globals.node,\n },\n plugins: {\n n: nodePlugin,\n },\n },\n {\n ...nodeRules,\n files: ['src/**/*.ts'],\n },\n] as const satisfies Config[];\n\nexport const browser = [\n ...core,\n {\n ...browserRules,\n files: ['src/**/*.ts'],\n },\n] as const satisfies Config[];\n\nexport const vue = [\n ...browser.map((config) => ({\n ...config,\n files: ['src/**/*.ts', 'src/**/*.vue'],\n })),\n ...vueRules.map((config) => ({\n ...config,\n files: ['src/**/*.vue'],\n })),\n] as const satisfies Config[];\n"],"names":["confusingBrowserGlobals","globals","ts","stylistic","importx","vuePlugin","vueParser","js","nodePlugin"],"mappings":"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"}
1
+ {"version":3,"file":"index.cjs","sources":["../src/rules/airbnb/best-practices.ts","../src/rules/airbnb/errors.ts","../src/rules/airbnb/es6.ts","../src/rules/airbnb/imports.ts","../src/rules/airbnb/node.ts","../src/rules/airbnb/strict.ts","../src/rules/airbnb/style.ts","../src/rules/airbnb/variables.ts","../src/rules/browser.ts","../src/rules/general.ts","../src/rules/typescript.ts","../src/rules/vue.ts","../src/index.ts"],"sourcesContent":["import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/best-practices',\n rules: {\n // enforces getter/setter pairs in objects\n // https://eslint.org/docs/rules/accessor-pairs\n 'accessor-pairs': 'off',\n\n // enforces return statements in callbacks of array's methods\n // https://eslint.org/docs/rules/array-callback-return\n 'array-callback-return': ['error', { allowImplicit: true }],\n\n // treat var statements as if they were block scoped\n // https://eslint.org/docs/rules/block-scoped-var\n 'block-scoped-var': 'error',\n\n // specify the maximum cyclomatic complexity allowed in a program\n // https://eslint.org/docs/rules/complexity\n complexity: ['off', 20],\n\n // enforce that class methods use \"this\"\n // https://eslint.org/docs/rules/class-methods-use-this\n 'class-methods-use-this': [\n 'error',\n {\n exceptMethods: [],\n },\n ],\n\n // require return statements to either always or never specify values\n // https://eslint.org/docs/rules/consistent-return\n 'consistent-return': 'error',\n\n // specify curly brace conventions for all control statements\n // https://eslint.org/docs/rules/curly\n curly: ['error', 'multi-line'], // multiline\n\n // require default case in switch statements\n // https://eslint.org/docs/rules/default-case\n 'default-case': ['error', { commentPattern: '^no default$' }],\n\n // Enforce default clauses in switch statements to be last\n // https://eslint.org/docs/rules/default-case-last\n 'default-case-last': 'error',\n\n // https://eslint.org/docs/rules/default-param-last\n 'default-param-last': 'error',\n\n // encourages use of dot notation whenever possible\n // https://eslint.org/docs/rules/dot-notation\n 'dot-notation': ['error', { allowKeywords: true }],\n\n // enforces consistent newlines before or after dots\n // https://eslint.style/rules/default/dot-location\n '@stylistic/dot-location': ['error', 'property'],\n\n // require the use of === and !==\n // https://eslint.org/docs/rules/eqeqeq\n eqeqeq: [\n 'error',\n 'always',\n { null: 'ignore' },\n ],\n\n // Require grouped accessor pairs in object literals and classes\n // https://eslint.org/docs/rules/grouped-accessor-pairs\n 'grouped-accessor-pairs': 'error',\n\n // make sure for-in loops have an if statement\n // https://eslint.org/docs/rules/guard-for-in\n 'guard-for-in': 'error',\n\n // enforce a maximum number of classes per file\n // https://eslint.org/docs/rules/max-classes-per-file\n 'max-classes-per-file': ['error', 1],\n\n // disallow the use of alert, confirm, and prompt\n // https://eslint.org/docs/rules/no-alert\n 'no-alert': 'error',\n\n // disallow use of arguments.caller or arguments.callee\n // https://eslint.org/docs/rules/no-caller\n 'no-caller': 'error',\n\n // disallow lexical declarations in case/default clauses\n // https://eslint.org/docs/rules/no-case-declarations\n 'no-case-declarations': 'error',\n\n // Disallow returning value in constructor\n // https://eslint.org/docs/rules/no-constructor-return\n 'no-constructor-return': 'error',\n\n // disallow division operators explicitly at beginning of regular expression\n // https://eslint.org/docs/rules/no-div-regex\n 'no-div-regex': 'off',\n\n // disallow else after a return in an if\n // https://eslint.org/docs/rules/no-else-return\n 'no-else-return': ['error', { allowElseIf: false }],\n\n // disallow empty functions, except for standalone funcs/arrows\n // https://eslint.org/docs/rules/no-empty-function\n 'no-empty-function': [\n 'error',\n {\n allow: [\n 'arrowFunctions',\n 'functions',\n 'methods',\n ],\n },\n ],\n\n // disallow empty destructuring patterns\n // https://eslint.org/docs/rules/no-empty-pattern\n 'no-empty-pattern': 'error',\n\n // Disallow empty static blocks\n // https://eslint.org/docs/rules/no-empty-static-block\n 'no-empty-static-block': 'error',\n\n // disallow comparisons to null without a type-checking operator\n // https://eslint.org/docs/rules/no-eq-null\n 'no-eq-null': 'off',\n\n // disallow use of eval()\n // https://eslint.org/docs/rules/no-eval\n 'no-eval': 'error',\n\n // disallow adding to native types\n // https://eslint.org/docs/rules/no-extend-native\n 'no-extend-native': 'error',\n\n // disallow unnecessary function binding\n // https://eslint.org/docs/rules/no-extra-bind\n 'no-extra-bind': 'error',\n\n // disallow Unnecessary Labels\n // https://eslint.org/docs/rules/no-extra-label\n 'no-extra-label': 'error',\n\n // disallow fallthrough of case statements\n // https://eslint.org/docs/rules/no-fallthrough\n 'no-fallthrough': 'error',\n\n // disallow the use of leading or trailing decimal points in numeric literals\n // https://eslint.style/rules/default/no-floating-decimal\n '@stylistic/no-floating-decimal': 'error',\n\n // disallow reassignments of native objects or read-only globals\n // https://eslint.org/docs/rules/no-global-assign\n 'no-global-assign': ['error', { exceptions: [] }],\n\n // disallow implicit type conversions\n // https://eslint.org/docs/rules/no-implicit-coercion\n 'no-implicit-coercion': [\n 'off',\n {\n boolean: false,\n number: true,\n string: true,\n allow: [],\n },\n ],\n\n // disallow var and named functions in global scope\n // https://eslint.org/docs/rules/no-implicit-globals\n 'no-implicit-globals': 'off',\n\n // disallow use of eval()-like methods\n // https://eslint.org/docs/rules/no-implied-eval\n 'no-implied-eval': 'error',\n\n // disallow this keywords outside of classes or class-like objects\n // https://eslint.org/docs/rules/no-invalid-this\n 'no-invalid-this': 'off',\n\n // disallow usage of __iterator__ property\n // https://eslint.org/docs/rules/no-iterator\n 'no-iterator': 'error',\n\n // disallow use of labels for anything other than loops and switches\n // https://eslint.org/docs/rules/no-labels\n 'no-labels': ['error', { allowLoop: false, allowSwitch: false }],\n\n // disallow unnecessary nested blocks\n // https://eslint.org/docs/rules/no-lone-blocks\n 'no-lone-blocks': 'error',\n\n // disallow creation of functions within loops\n // https://eslint.org/docs/rules/no-loop-func\n 'no-loop-func': 'error',\n\n // disallow magic numbers\n // https://eslint.org/docs/rules/no-magic-numbers\n 'no-magic-numbers': [\n 'off',\n {\n ignore: [],\n ignoreArrayIndexes: true,\n enforceConst: true,\n detectObjects: false,\n },\n ],\n\n // disallow use of multiple spaces\n // https://eslint.style/rules/default/no-multi-spaces\n '@stylistic/no-multi-spaces': [\n 'error',\n {\n ignoreEOLComments: false,\n },\n ],\n\n // disallow use of multiline strings\n // https://eslint.org/docs/rules/no-multi-str\n 'no-multi-str': 'error',\n\n // disallow use of new operator when not part of the assignment or comparison\n // https://eslint.org/docs/rules/no-new\n 'no-new': 'error',\n\n // disallow use of new operator for Function object\n // https://eslint.org/docs/rules/no-new-func\n 'no-new-func': 'error',\n\n // disallows creating new instances of String, Number, and Boolean\n // https://eslint.org/docs/rules/no-new-wrappers\n 'no-new-wrappers': 'error',\n\n // Disallow \\8 and \\9 escape sequences in string literals\n // https://eslint.org/docs/rules/no-nonoctal-decimal-escape\n 'no-nonoctal-decimal-escape': 'error',\n\n // Disallow calls to the Object constructor without an argument\n // https://eslint.org/docs/rules/no-object-constructor\n 'no-object-constructor': 'error',\n\n // disallow use of (old style) octal literals\n // https://eslint.org/docs/rules/no-octal\n 'no-octal': 'error',\n\n // disallow use of octal escape sequences in string literals, such as\n // var foo = 'Copyright \\251';\n // https://eslint.org/docs/rules/no-octal-escape\n 'no-octal-escape': 'error',\n\n // disallow reassignment of function parameters\n // disallow parameter object manipulation except for specific exclusions\n // rule: https://eslint.org/docs/rules/no-param-reassign.html\n 'no-param-reassign': [\n 'error',\n {\n props: true,\n ignorePropertyModificationsFor: [\n 'acc', // for reduce accumulators\n 'accumulator', // for reduce accumulators\n 'e', // for e.returnvalue\n 'ctx', // for Koa routing\n 'context', // for Koa routing\n 'req', // for Express requests\n 'request', // for Express requests\n 'res', // for Express responses\n 'response', // for Express responses\n '$scope', // for Angular 1 scopes\n 'staticContext', // for ReactRouter context\n ],\n },\n ],\n\n // disallow usage of __proto__ property\n // https://eslint.org/docs/rules/no-proto\n 'no-proto': 'error',\n\n // disallow declaring the same variable more than once\n // https://eslint.org/docs/rules/no-redeclare\n 'no-redeclare': 'error',\n\n // disallow certain object properties\n // https://eslint.org/docs/rules/no-restricted-properties\n 'no-restricted-properties': [\n 'error',\n {\n object: 'arguments',\n property: 'callee',\n message: 'arguments.callee is deprecated',\n },\n {\n object: 'global',\n property: 'isFinite',\n message: 'Please use Number.isFinite instead',\n },\n {\n object: 'self',\n property: 'isFinite',\n message: 'Please use Number.isFinite instead',\n },\n {\n object: 'window',\n property: 'isFinite',\n message: 'Please use Number.isFinite instead',\n },\n {\n object: 'global',\n property: 'isNaN',\n message: 'Please use Number.isNaN instead',\n },\n {\n object: 'self',\n property: 'isNaN',\n message: 'Please use Number.isNaN instead',\n },\n {\n object: 'window',\n property: 'isNaN',\n message: 'Please use Number.isNaN instead',\n },\n {\n property: '__defineGetter__',\n message: 'Please use Object.defineProperty instead.',\n },\n {\n property: '__defineSetter__',\n message: 'Please use Object.defineProperty instead.',\n },\n {\n object: 'Math',\n property: 'pow',\n message: 'Use the exponentiation operator (**) instead.',\n },\n ],\n\n // disallow use of assignment in return statement\n // https://eslint.org/docs/rules/no-return-assign\n 'no-return-assign': ['error', 'always'],\n\n // disallow redundant `return await`\n // https://eslint.org/docs/rules/no-return-await\n 'no-return-await': 'error',\n\n // disallow use of `javascript:` urls.\n // https://eslint.org/docs/rules/no-script-url\n 'no-script-url': 'error',\n\n // disallow self assignment\n // https://eslint.org/docs/rules/no-self-assign\n 'no-self-assign': [\n 'error',\n {\n props: true,\n },\n ],\n\n // disallow comparisons where both sides are exactly the same\n // https://eslint.org/docs/rules/no-self-compare\n 'no-self-compare': 'error',\n\n // disallow use of comma operator\n // https://eslint.org/docs/rules/no-sequences\n 'no-sequences': 'error',\n\n // restrict what can be thrown as an exception\n // https://eslint.org/docs/rules/no-throw-literal\n 'no-throw-literal': 'error',\n\n // disallow unmodified conditions of loops\n // https://eslint.org/docs/rules/no-unmodified-loop-condition\n 'no-unmodified-loop-condition': 'off',\n\n // disallow usage of expressions in statement position\n // https://eslint.org/docs/rules/no-unused-expressions\n 'no-unused-expressions': [\n 'error',\n {\n allowShortCircuit: false,\n allowTernary: false,\n allowTaggedTemplates: false,\n },\n ],\n\n // disallow unused labels\n // https://eslint.org/docs/rules/no-unused-labels\n 'no-unused-labels': 'error',\n\n // disallow unnecessary .call() and .apply()\n // https://eslint.org/docs/rules/no-useless-call\n 'no-useless-call': 'off',\n\n // Disallow unnecessary catch clauses\n // https://eslint.org/docs/rules/no-useless-catch\n 'no-useless-catch': 'error',\n\n // disallow useless string concatenation\n // https://eslint.org/docs/rules/no-useless-concat\n 'no-useless-concat': 'error',\n\n // disallow unnecessary string escaping\n // https://eslint.org/docs/rules/no-useless-escape\n 'no-useless-escape': 'error',\n\n // disallow redundant return; keywords\n // https://eslint.org/docs/rules/no-useless-return\n 'no-useless-return': 'error',\n\n // disallow use of void operator\n // https://eslint.org/docs/rules/no-void\n 'no-void': 'error',\n\n // disallow usage of configurable warning terms in comments: e.g. todo\n // https://eslint.org/docs/rules/no-warning-comments\n 'no-warning-comments': [\n 'off',\n {\n terms: [\n 'todo',\n 'fixme',\n 'xxx',\n ],\n location: 'start',\n },\n ],\n\n // disallow use of the with statement\n // https://eslint.org/docs/rules/no-with\n 'no-with': 'error',\n\n // require using Error objects as Promise rejection reasons\n // https://eslint.org/docs/rules/prefer-promise-reject-errors\n 'prefer-promise-reject-errors': ['error', { allowEmptyReject: true }],\n\n // Suggest using named capture group in regular expression\n // https://eslint.org/docs/rules/prefer-named-capture-group\n 'prefer-named-capture-group': 'off',\n\n // Prefer Object.hasOwn() over Object.prototype.hasOwnProperty.call()\n // https://eslint.org/docs/rules/prefer-object-has-own\n 'prefer-object-has-own': 'error',\n\n // https://eslint.org/docs/rules/prefer-regex-literals\n 'prefer-regex-literals': [\n 'error',\n {\n disallowRedundantWrapping: true,\n },\n ],\n\n // require use of the second argument for parseInt()\n // https://eslint.org/docs/rules/radix\n radix: 'error',\n\n // require `await` in `async function`\n // (note: this is a horrible rule that should never be used)\n // https://eslint.org/docs/rules/require-await\n 'require-await': 'off',\n\n // Enforce the use of u flag on RegExp\n // https://eslint.org/docs/rules/require-unicode-regexp\n 'require-unicode-regexp': 'off',\n\n // requires to declare all vars on top of their containing scope\n // https://eslint.org/docs/rules/vars-on-top\n 'vars-on-top': 'error',\n\n // require immediate function invocation to be wrapped in parentheses\n // https://eslint.style/rules/default/wrap-iife\n '@stylistic/wrap-iife': [\n 'error',\n 'outside',\n { functionPrototypeMethods: false },\n ],\n\n // require or disallow Yoda conditions\n // https://eslint.org/docs/rules/yoda\n yoda: 'error',\n },\n} satisfies Linter.Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/errors',\n rules: {\n // Enforce “for” loop update clause moving the counter in the right direction\n // https://eslint.org/docs/rules/for-direction\n 'for-direction': 'error',\n\n // Enforces that a return statement is present in property getters\n // https://eslint.org/docs/rules/getter-return\n 'getter-return': ['error', { allowImplicit: true }],\n\n // disallow using an async function as a Promise executor\n // https://eslint.org/docs/rules/no-async-promise-executor\n 'no-async-promise-executor': 'error',\n\n // Disallow await inside of loops\n // https://eslint.org/docs/rules/no-await-in-loop\n 'no-await-in-loop': 'error',\n\n // Disallow comparisons to negative zero\n // https://eslint.org/docs/rules/no-compare-neg-zero\n 'no-compare-neg-zero': 'error',\n\n // disallow assignment in conditional expressions\n // https://eslint.org/docs/rules/no-cond-assign\n 'no-cond-assign': ['error', 'always'],\n\n // disallow use of console\n // https://eslint.org/docs/rules/no-console\n 'no-console': [\n 'error',\n {\n allow: [\n 'info',\n 'warn',\n 'error',\n ],\n },\n ],\n\n // Disallows expressions where the operation doesn't affect the value\n // https://eslint.org/docs/rules/no-constant-binary-expression\n 'no-constant-binary-expression': 'error',\n\n // disallow use of constant expressions in conditions\n // https://eslint.org/docs/rules/no-constant-condition\n 'no-constant-condition': 'error',\n\n // disallow control characters in regular expressions\n // https://eslint.org/docs/rules/no-control-regex\n 'no-control-regex': 'error',\n\n // disallow use of debugger\n // https://eslint.org/docs/rules/no-debugger\n 'no-debugger': 'error',\n\n // disallow duplicate arguments in functions\n // https://eslint.org/docs/rules/no-dupe-args\n 'no-dupe-args': 'error',\n\n // Disallow duplicate conditions in if-else-if chains\n // https://eslint.org/docs/rules/no-dupe-else-if\n 'no-dupe-else-if': 'error',\n\n // disallow duplicate keys when creating object literals\n // https://eslint.org/docs/rules/no-dupe-keys\n 'no-dupe-keys': 'error',\n\n // disallow a duplicate case label.\n // https://eslint.org/docs/rules/no-duplicate-case\n 'no-duplicate-case': 'error',\n\n // disallow empty statements\n // https://eslint.org/docs/rules/no-empty\n 'no-empty': 'error',\n\n // disallow the use of empty character classes in regular expressions\n // https://eslint.org/docs/rules/no-empty-character-class\n 'no-empty-character-class': 'error',\n\n // disallow assigning to the exception in a catch block\n // https://eslint.org/docs/rules/no-ex-assign\n 'no-ex-assign': 'error',\n\n // disallow double-negation boolean casts in a boolean context\n // https://eslint.org/docs/rules/no-extra-boolean-cast\n 'no-extra-boolean-cast': 'error',\n\n // disallow unnecessary parentheses\n // https://eslint.style/rules/default/no-extra-parens\n '@stylistic/no-extra-parens': [\n 'off',\n 'all',\n {\n conditionalAssign: true,\n nestedBinaryExpressions: false,\n returnAssign: false,\n enforceForArrowConditionals: false,\n },\n ],\n\n // disallow unnecessary semicolons\n // https://eslint.style/rules/default/no-extra-semi\n '@stylistic/no-extra-semi': 'error',\n\n // disallow overwriting functions written as function declarations\n // https://eslint.org/docs/rules/no-func-assign\n 'no-func-assign': 'error',\n\n // disallow assigning to imported bindings\n // https://eslint.org/docs/rules/no-import-assign\n 'no-import-assign': 'error',\n\n // disallow function or variable declarations in nested blocks\n // https://eslint.org/docs/rules/no-inner-declarations\n 'no-inner-declarations': 'error',\n\n // disallow invalid regular expression strings in the RegExp constructor\n // https://eslint.org/docs/rules/no-invalid-regexp\n 'no-invalid-regexp': 'error',\n\n // disallow irregular whitespace outside of strings and comments\n // https://eslint.org/docs/rules/no-irregular-whitespace\n 'no-irregular-whitespace': 'error',\n\n // Disallow Number Literals That Lose Precision\n // https://eslint.org/docs/rules/no-loss-of-precision\n 'no-loss-of-precision': 'error',\n\n // Disallow characters which are made with multiple code points in character class syntax\n // https://eslint.org/docs/rules/no-misleading-character-class\n 'no-misleading-character-class': 'error',\n\n // disallow the use of object properties of the global object (Math and JSON) as functions\n // https://eslint.org/docs/rules/no-obj-calls\n 'no-obj-calls': 'error',\n\n // Disallow new operators with global non-constructor functions\n // https://eslint.org/docs/rules/no-new-native-nonconstructor\n 'no-new-native-nonconstructor': 'error',\n\n // Disallow returning values from Promise executor functions\n // https://eslint.org/docs/rules/no-promise-executor-return\n 'no-promise-executor-return': 'error',\n\n // disallow use of Object.prototypes builtins directly\n // https://eslint.org/docs/rules/no-prototype-builtins\n 'no-prototype-builtins': 'error',\n\n // disallow multiple spaces in a regular expression literal\n // https://eslint.org/docs/rules/no-regex-spaces\n 'no-regex-spaces': 'error',\n\n // Disallow returning values from setters\n // https://eslint.org/docs/rules/no-setter-return\n 'no-setter-return': 'error',\n\n // disallow sparse arrays\n // https://eslint.org/docs/rules/no-sparse-arrays\n 'no-sparse-arrays': 'error',\n\n // Disallow template literal placeholder syntax in regular strings\n // https://eslint.org/docs/rules/no-template-curly-in-string\n 'no-template-curly-in-string': 'error',\n\n // Avoid code that looks like two expressions but is actually one\n // https://eslint.org/docs/rules/no-unexpected-multiline\n 'no-unexpected-multiline': 'error',\n\n // disallow unreachable statements after a return, throw, continue, or break statement\n // https://eslint.org/docs/rules/no-unreachable\n 'no-unreachable': 'error',\n\n // Disallow loops with a body that allows only one iteration\n // https://eslint.org/docs/rules/no-unreachable-loop\n 'no-unreachable-loop': [\n 'error',\n {\n ignore: [],\n // WhileStatement, DoWhileStatement, ForStatement, ForInStatement, ForOfStatement\n },\n ],\n\n // disallow return/throw/break/continue inside finally blocks\n // https://eslint.org/docs/rules/no-unsafe-finally\n 'no-unsafe-finally': 'error',\n\n // disallow negating the left operand of relational operators\n // https://eslint.org/docs/rules/no-unsafe-negation\n 'no-unsafe-negation': 'error',\n\n // disallow use of optional chaining in contexts where the undefined value is not allowed\n // https://eslint.org/docs/rules/no-unsafe-optional-chaining\n 'no-unsafe-optional-chaining': ['error', { disallowArithmeticOperators: true }],\n\n // Disallow Unused Private Class Members\n // https://eslint.org/docs/rules/no-unused-private-class-members\n 'no-unused-private-class-members': 'error',\n\n // Disallow useless backreferences in regular expressions\n // https://eslint.org/docs/rules/no-useless-backreference\n 'no-useless-backreference': 'error',\n\n // Disallow assignments that can lead to race conditions due to usage of await or yield\n // https://eslint.org/docs/rules/require-atomic-updates\n // note: not enabled because it is very buggy\n 'require-atomic-updates': 'off',\n\n // disallow comparisons with the value NaN\n // https://eslint.org/docs/rules/use-isnan\n 'use-isnan': 'error',\n\n // ensure that the results of typeof are compared against a valid string\n // https://eslint.org/docs/rules/valid-typeof\n 'valid-typeof': ['error', { requireStringLiterals: true }],\n },\n} satisfies Linter.Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/es6',\n rules: {\n // enforces no braces where they can be omitted\n // https://eslint.org/docs/rules/arrow-body-style\n 'arrow-body-style': [\n 'error',\n 'as-needed',\n {\n requireReturnForObjectLiteral: false,\n },\n ],\n\n // require parens in arrow function arguments\n // https://eslint.style/rules/default/arrow-parens\n '@stylistic/arrow-parens': ['error', 'always'],\n\n // require space before/after arrow function's arrow\n // https://eslint.style/rules/default/arrow-spacing\n '@stylistic/arrow-spacing': ['error', { before: true, after: true }],\n\n // verify super() callings in constructors\n // https://eslint.org/docs/rules/constructor-super\n 'constructor-super': 'error',\n\n // enforce the spacing around the * in generator functions\n // https://eslint.style/rules/default/generator-star-spacing\n '@stylistic/generator-star-spacing': ['error', { before: false, after: true }],\n\n // disallow modifying variables of class declarations\n // https://eslint.org/docs/rules/no-class-assign\n 'no-class-assign': 'error',\n\n // disallow arrow functions where they could be confused with comparisons\n // https://eslint.style/rules/default/no-confusing-arrow\n '@stylistic/no-confusing-arrow': [\n 'error',\n {\n allowParens: true,\n },\n ],\n\n // disallow modifying variables that are declared using const\n // https://eslint.org/docs/rules/no-const-assign\n 'no-const-assign': 'error',\n\n // disallow duplicate class members\n // https://eslint.org/docs/rules/no-dupe-class-members\n 'no-dupe-class-members': 'error',\n\n // disallow importing from the same path more than once\n // https://eslint.org/docs/rules/no-duplicate-imports\n // replaced by https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-duplicates.md\n 'no-duplicate-imports': 'off',\n\n // Disallow specified names in exports\n // https://eslint.org/docs/rules/no-restricted-exports\n 'no-restricted-exports': [\n 'error',\n {\n restrictedNamedExports: [\n 'default', // use `export default` to provide a default export\n 'then', // this will cause tons of confusion when your module is dynamically `import()`ed, and will break in most node ESM versions\n ],\n },\n ],\n\n // disallow specific imports\n // https://eslint.org/docs/rules/no-restricted-imports\n 'no-restricted-imports': [\n 'off',\n {\n paths: [],\n patterns: [],\n },\n ],\n\n // disallow to use this/super before super() calling in constructors.\n // https://eslint.org/docs/rules/no-this-before-super\n 'no-this-before-super': 'error',\n\n // disallow useless computed property keys\n // https://eslint.org/docs/rules/no-useless-computed-key\n 'no-useless-computed-key': 'error',\n\n // disallow unnecessary constructor\n // https://eslint.org/docs/rules/no-useless-constructor\n 'no-useless-constructor': 'error',\n\n // disallow renaming import, export, and destructured assignments to the same name\n // https://eslint.org/docs/rules/no-useless-rename\n 'no-useless-rename': [\n 'error',\n {\n ignoreDestructuring: false,\n ignoreImport: false,\n ignoreExport: false,\n },\n ],\n\n // require let or const instead of var\n // https://eslint.org/docs/rules/no-var\n 'no-var': 'error',\n\n // require method and property shorthand syntax for object literals\n // https://eslint.org/docs/rules/object-shorthand\n 'object-shorthand': [\n 'error',\n 'always',\n {\n ignoreConstructors: false,\n avoidQuotes: true,\n },\n ],\n\n // suggest using arrow functions as callbacks\n // https://eslint.org/docs/rules/prefer-arrow-callback\n 'prefer-arrow-callback': [\n 'error',\n {\n allowNamedFunctions: false,\n allowUnboundThis: true,\n },\n ],\n\n // suggest using of const declaration for variables that are never modified after declared\n // https://eslint.org/docs/rules/prefer-const\n 'prefer-const': [\n 'error',\n {\n destructuring: 'any',\n ignoreReadBeforeAssign: true,\n },\n ],\n\n // Prefer destructuring from arrays and objects\n // https://eslint.org/docs/rules/prefer-destructuring\n 'prefer-destructuring': [\n 'error',\n {\n VariableDeclarator: {\n array: false,\n object: true,\n },\n AssignmentExpression: {\n array: true,\n object: false,\n },\n },\n {\n enforceForRenamedProperties: false,\n },\n ],\n\n // disallow parseInt() in favor of binary, octal, and hexadecimal literals\n // https://eslint.org/docs/rules/prefer-numeric-literals\n 'prefer-numeric-literals': 'error',\n\n // use rest parameters instead of arguments\n // https://eslint.org/docs/rules/prefer-rest-params\n 'prefer-rest-params': 'error',\n\n // suggest using the spread syntax instead of .apply()\n // https://eslint.org/docs/rules/prefer-spread\n 'prefer-spread': 'error',\n\n // suggest using template literals instead of string concatenation\n // https://eslint.org/docs/rules/prefer-template\n 'prefer-template': 'error',\n\n // disallow generator functions that do not have yield\n // https://eslint.org/docs/rules/require-yield\n 'require-yield': 'error',\n\n // enforce spacing between object rest-spread\n // https://eslint.style/rules/default/rest-spread-spacing\n '@stylistic/rest-spread-spacing': ['error', 'never'],\n\n // import sorting\n // https://eslint.org/docs/rules/sort-imports\n 'sort-imports': [\n 'off',\n {\n ignoreCase: false,\n ignoreDeclarationSort: false,\n ignoreMemberSort: false,\n memberSyntaxSortOrder: [\n 'none',\n 'all',\n 'multiple',\n 'single',\n ],\n },\n ],\n\n // require a Symbol description\n // https://eslint.org/docs/rules/symbol-description\n 'symbol-description': 'error',\n\n // enforce usage of spacing in template strings\n // https://eslint.style/rules/default/template-curly-spacing\n '@stylistic/template-curly-spacing': 'error',\n\n // enforce spacing around the * in yield* expressions\n // https://eslint.style/rules/default/yield-star-spacing\n '@stylistic/yield-star-spacing': ['error', 'after'],\n },\n} satisfies Linter.Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/imports',\n rules: {\n // Static analysis:\n\n // ensure imports point to files/modules that can be resolved\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-unresolved.md\n 'import-x/no-unresolved': [\n 'error', { commonjs: true, caseSensitive: true },\n ],\n\n // ensure named imports coupled with named exports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/named.md\n 'import-x/named': 'error',\n\n // ensure default import coupled with default export\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/default.md\n 'import-x/default': 'off',\n\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/namespace.md\n 'import-x/namespace': 'off',\n\n // Helpful warnings:\n\n // disallow invalid exports, e.g. multiple defaults\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/export.md\n 'import-x/export': 'error',\n\n // do not allow a default import name to match a named export\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-named-as-default.md\n 'import-x/no-named-as-default': 'error',\n\n // warn on accessing default export property names that are also named exports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-named-as-default-member.md\n 'import-x/no-named-as-default-member': 'error',\n\n // disallow use of jsdoc-marked-deprecated imports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-deprecated.md\n 'import-x/no-deprecated': 'off',\n\n // Forbid the use of extraneous packages\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-extraneous-dependencies.md\n // paths are treated both as absolute paths, and relative to process.cwd()\n 'import-x/no-extraneous-dependencies': [\n 'error',\n {\n devDependencies: [\n 'test/**', // tape, common npm pattern\n 'tests/**', // also common npm pattern\n 'spec/**', // mocha, rspec-like pattern\n '**/__tests__/**', // jest pattern\n '**/__mocks__/**', // jest pattern\n 'test.{js,ts}', // repos with a single test file\n 'test-*.{js,ts}', // repos with multiple top-level test files\n '**/*{.,_}{test,spec}.{js,ts}', // tests where the extension or filename suffix denotes that it is a test\n '**/jest.config.js', // jest config\n '**/jest.setup.js', // jest setup\n '**/vue.config.js', // vue-cli config\n '**/webpack.config.js', // webpack config\n '**/webpack.config.*.js', // webpack config\n '**/rollup.config.js', // rollup config\n '**/rollup.config.*.js', // rollup config\n '**/gulpfile.js', // gulp config\n '**/gulpfile.*.js', // gulp config\n '**/Gruntfile{,.js}', // grunt config\n '**/protractor.conf.js', // protractor config\n '**/protractor.conf.*.js', // protractor config\n '**/karma.conf.js', // karma config\n '**/.eslintrc.js', // eslint config\n ],\n optionalDependencies: false,\n },\n ],\n\n // Forbid mutable exports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-mutable-exports.md\n 'import-x/no-mutable-exports': 'error',\n\n // Module systems:\n\n // disallow require()\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-commonjs.md\n 'import-x/no-commonjs': 'error',\n\n // disallow AMD require/define\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-amd.md\n 'import-x/no-amd': 'error',\n\n // No Node.js builtin modules\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-nodejs-modules.md\n 'import-x/no-nodejs-modules': 'error',\n\n // Style guide:\n\n // disallow non-import statements appearing before import statements\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/first.md\n 'import-x/first': 'error',\n\n // disallow duplicate imports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-duplicates.md\n 'import-x/no-duplicates': 'error',\n\n // disallow namespace imports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-namespace.md\n 'import-x/no-namespace': 'error',\n\n // Ensure consistent use of file extension within the import path\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/extensions.md\n 'import-x/extensions': [\n 'error',\n 'always',\n {\n ignorePackages: true,\n checkTypeImports: true,\n },\n ],\n\n // ensure absolute imports are above relative imports and\n // that unassigned imports are ignored\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/order.md\n 'import-x/order': [\n 'error',\n {\n groups: [\n 'builtin',\n 'external',\n 'internal',\n 'parent',\n 'sibling',\n 'index',\n 'object',\n 'type',\n ],\n 'newlines-between': 'always',\n alphabetize: {\n order: 'asc',\n orderImportKind: 'asc',\n },\n },\n ],\n\n // Require a newline after the last import-x/require in a group\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/newline-after-import.md\n 'import-x/newline-after-import': 'error',\n\n // Require modules with a single export to use a default export\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/prefer-default-export.md\n 'import-x/prefer-default-export': 'error',\n\n // Restrict which files can be imported in a given folder\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-restricted-paths.md\n 'import-x/no-restricted-paths': 'off',\n\n // Forbid modules to have too many dependencies\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/max-dependencies.md\n 'import-x/max-dependencies': ['off', { max: 10 }],\n\n // Forbid import of modules using absolute paths\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-absolute-path.md\n 'import-x/no-absolute-path': 'error',\n\n // Forbid require() calls with expressions\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-dynamic-require.md\n 'import-x/no-dynamic-require': 'error',\n\n // prevent importing the submodules of other modules\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-internal-modules.md\n 'import-x/no-internal-modules': [\n 'off',\n {\n allow: [],\n },\n ],\n\n // Warn if a module could be mistakenly parsed as a script by a consumer\n // leveraging Unambiguous JavaScript Grammar\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/unambiguous.md\n // this should not be enabled until this proposal has at least been *presented* to TC39.\n // At the moment, it's not a thing.\n 'import-x/unambiguous': 'off',\n\n // Forbid Webpack loader syntax in imports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-webpack-loader-syntax.md\n 'import-x/no-webpack-loader-syntax': 'error',\n\n // Prevent unassigned imports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-unassigned-import.md\n // importing for side effects is perfectly acceptable, if you need side effects.\n 'import-x/no-unassigned-import': 'off',\n\n // Prevent importing the default as if it were named\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-named-default.md\n 'import-x/no-named-default': 'error',\n\n // Reports if a module's default export is unnamed\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-anonymous-default-export.md\n 'import-x/no-anonymous-default-export': [\n 'off',\n {\n allowArray: false,\n allowArrowFunction: false,\n allowAnonymousClass: false,\n allowAnonymousFunction: false,\n allowLiteral: false,\n allowObject: false,\n },\n ],\n\n // This rule enforces that all exports are declared at the bottom of the file.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/exports-last.md\n 'import-x/exports-last': 'error',\n\n // Reports when named exports are not grouped together in a single export declaration\n // or when multiple assignments to CommonJS module.exports or exports object are present\n // in a single file.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/group-exports.md\n 'import-x/group-exports': 'off',\n\n // forbid default exports. this is a terrible rule, do not use it.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-default-export.md\n 'import-x/no-default-export': 'off',\n\n // Prohibit named exports. this is a terrible rule, do not use it.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-named-export.md\n 'import-x/no-named-export': 'off',\n\n // Forbid a module from importing itself\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-self-import.md\n 'import-x/no-self-import': 'error',\n\n // Forbid cyclical dependencies between modules\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-cycle.md\n 'import-x/no-cycle': ['error', { maxDepth: '∞' }],\n\n // Ensures that there are no useless path segments\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-useless-path-segments.md\n 'import-x/no-useless-path-segments': ['error', { commonjs: true }],\n\n // dynamic imports require a leading comment with a webpackChunkName\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/dynamic-import-chunkname.md\n 'import-x/dynamic-import-chunkname': [\n 'off',\n {\n importFunctions: [],\n webpackChunknameFormat: '[0-9a-zA-Z-_/.]+',\n },\n ],\n\n // Use this rule to prevent imports to folders in relative parent paths.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-relative-parent-imports.md\n 'import-x/no-relative-parent-imports': 'off',\n\n // Reports modules without any exports, or with unused exports\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-unused-modules.md\n 'import-x/no-unused-modules': [\n 'error',\n {\n ignoreExports: [],\n missingExports: true,\n unusedExports: true,\n },\n ],\n\n // Reports the use of import declarations with CommonJS exports\n // in any module except for the main module.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-import-module-exports.md\n 'import-x/no-import-module-exports': [\n 'error',\n {\n exceptions: [],\n },\n ],\n\n // Use this rule to prevent importing packages through relative paths.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-relative-packages.md\n 'import-x/no-relative-packages': 'error',\n\n // enforce a consistent style for type specifiers (inline or top-level)\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/consistent-type-specifier-style.md\n 'import-x/consistent-type-specifier-style': ['error', 'prefer-top-level'],\n\n // Reports the use of empty named import blocks.\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-empty-named-blocks.md\n 'import-x/no-empty-named-blocks': 'error',\n },\n} satisfies Linter.Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/node',\n rules: {\n // enforce return after a callback\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/callback-return.md\n 'n/callback-return': 'off',\n\n // require all requires be top-level\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/global-require.md\n 'n/global-require': 'error',\n\n // enforces error handling in callbacks (node environment)\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/handle-callback-err.md\n 'n/handle-callback-err': 'off',\n\n // disallow use of the Buffer() constructor\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-deprecated-api.md\n 'n/no-deprecated-api': 'error',\n\n // disallow mixing regular variable and require declarations\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-mixed-requires.md\n 'n/no-mixed-requires': ['off', false],\n\n // disallow use of new operator with the require function\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-new-require.md\n 'n/no-new-require': 'error',\n\n // disallow string concatenation with __dirname and __filename\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-path-concat.md\n 'n/no-path-concat': 'error',\n\n // disallow use of process.env\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-process-env.md\n 'n/no-process-env': 'off',\n\n // disallow process.exit()\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-process-exit.md\n 'n/no-process-exit': 'off',\n\n // restrict usage of specified node modules\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-restricted-modules.md\n 'n/no-restricted-modules': 'off',\n\n // disallow use of synchronous methods (off by default)\n // https://github.com/eslint-community/eslint-plugin-n/blob/master/docs/rules/no-sync.md\n 'n/no-sync': 'off',\n\n // No Node.js builtin modules\n // https://github.com/un-ts/eslint-plugin-import-x/blob/master/docs/rules/no-nodejs-modules.md\n 'import-x/no-nodejs-modules': 'off',\n },\n} satisfies Linter.Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/strict',\n rules: {\n // babel inserts `'use strict';` for us\n strict: ['error', 'never'],\n },\n} satisfies Linter.Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/style',\n rules: {\n // enforce line breaks after opening and before closing array brackets\n // https://eslint.style/rules/default/array-bracket-newline\n '@stylistic/array-bracket-newline': ['error', 'consistent'],\n // object option alternative: { multiline: true, minItems: 3 }\n\n // enforce line breaks between array elements\n // https://eslint.style/rules/default/array-element-newline\n '@stylistic/array-element-newline': ['error', { consistent: true, multiline: true, minItems: 3 }],\n\n // enforce spacing inside array brackets\n // https://eslint.style/rules/default/array-bracket-spacing\n '@stylistic/array-bracket-spacing': ['error', 'never'],\n\n // enforce spacing inside single-line blocks\n // https://eslint.style/rules/default/block-spacing\n '@stylistic/block-spacing': ['error', 'always'],\n\n // enforce one true brace style\n // https://eslint.style/rules/default/brace-style\n '@stylistic/brace-style': [\n 'error',\n '1tbs',\n { allowSingleLine: true },\n ],\n\n // require camel case names\n // https://eslint.org/docs/rules/camelcase\n camelcase: 'error',\n\n // enforce or disallow capitalization of the first letter of a comment\n // https://eslint.org/docs/rules/capitalized-comments\n 'capitalized-comments': [\n 'off',\n 'never',\n {\n line: {\n ignorePattern: '.*',\n ignoreInlineComments: true,\n ignoreConsecutiveComments: true,\n },\n block: {\n ignorePattern: '.*',\n ignoreInlineComments: true,\n ignoreConsecutiveComments: true,\n },\n },\n ],\n\n // require trailing commas in multiline object literals\n // https://eslint.style/rules/default/comma-dangle\n '@stylistic/comma-dangle': [\n 'error',\n {\n arrays: 'always-multiline',\n objects: 'always-multiline',\n imports: 'always-multiline',\n exports: 'always-multiline',\n functions: 'always-multiline',\n enums: 'always-multiline',\n generics: 'always-multiline',\n tuples: 'always-multiline',\n },\n ],\n\n // enforce spacing before and after comma\n // https://eslint.style/rules/default/comma-spacing\n '@stylistic/comma-spacing': ['error', { before: false, after: true }],\n\n // enforce one true comma style\n // https://eslint.style/rules/default/comma-style\n '@stylistic/comma-style': [\n 'error',\n 'last',\n {\n exceptions: {\n ArrayExpression: false,\n ArrayPattern: false,\n ArrowFunctionExpression: false,\n CallExpression: false,\n FunctionDeclaration: false,\n FunctionExpression: false,\n ImportDeclaration: false,\n ObjectExpression: false,\n ObjectPattern: false,\n VariableDeclaration: false,\n NewExpression: false,\n ExportAllDeclaration: false,\n ExportNamedDeclaration: false,\n ImportExpression: false,\n SequenceExpression: false,\n ClassDeclaration: false,\n ClassExpression: false,\n TSDeclareFunction: false,\n TSFunctionType: false,\n TSConstructorType: false,\n TSEmptyBodyFunctionExpression: false,\n TSMethodSignature: false,\n TSCallSignatureDeclaration: false,\n TSConstructSignatureDeclaration: false,\n TSEnumBody: false,\n TSTypeLiteral: false,\n TSInterfaceBody: false,\n TSIndexSignature: false,\n TSInterfaceDeclaration: false,\n TSTupleType: false,\n TSTypeParameterDeclaration: false,\n TSTypeParameterInstantiation: false,\n },\n },\n ],\n\n // disallow padding inside computed properties\n // https://eslint.style/rules/default/computed-property-spacing\n '@stylistic/computed-property-spacing': ['error', 'never'],\n\n // enforces consistent naming when capturing the current execution context\n // https://eslint.org/docs/rules/consistent-this\n 'consistent-this': 'off',\n\n // enforce newline at the end of file, with no multiple empty lines\n // https://eslint.style/rules/default/eol-last\n '@stylistic/eol-last': ['error', 'always'],\n\n // https://eslint.style/rules/default/function-call-argument-newline\n '@stylistic/function-call-argument-newline': ['error', 'consistent'],\n\n // enforce spacing between functions and their invocations\n // https://eslint.style/rules/default/function-call-spacing\n '@stylistic/function-call-spacing': ['error', 'never'],\n\n // requires function names to match the name of the variable or property to which they are\n // assigned\n // https://eslint.org/docs/rules/func-name-matching\n 'func-name-matching': [\n 'off',\n 'always',\n {\n includeCommonJSModuleExports: false,\n considerPropertyDescriptor: true,\n },\n ],\n\n // require function expressions to have a name\n // https://eslint.org/docs/rules/func-names\n 'func-names': 'error',\n\n // enforces use of function declarations or expressions\n // https://eslint.org/docs/rules/func-style\n 'func-style': ['error', 'expression'],\n\n // require line breaks inside function parentheses\n // if there are line breaks between parameters\n // https://eslint.style/rules/default/function-paren-newline\n '@stylistic/function-paren-newline': ['error', 'multiline-arguments'],\n\n // disallow specified identifiers\n // https://eslint.org/docs/rules/id-denylist\n 'id-denylist': 'off',\n\n // this option enforces minimum and maximum identifier lengths\n // (variable names, property names etc.)\n // https://eslint.org/docs/rules/id-length\n 'id-length': 'off',\n\n // require identifiers to match the provided regular expression\n // https://eslint.org/docs/rules/id-match\n 'id-match': 'off',\n\n // Enforce the location of arrow function bodies with implicit returns\n // https://eslint.style/rules/default/implicit-arrow-linebreak\n '@stylistic/implicit-arrow-linebreak': ['error', 'beside'],\n\n // this option sets a specific tab width for your code\n // https://eslint.style/rules/default/indent\n '@stylistic/indent': [\n 'error',\n 4,\n {\n SwitchCase: 1,\n VariableDeclarator: 1,\n outerIIFEBody: 1,\n // MemberExpression: null,\n FunctionDeclaration: {\n parameters: 1,\n body: 1,\n },\n FunctionExpression: {\n parameters: 1,\n body: 1,\n },\n CallExpression: {\n arguments: 1,\n },\n ArrayExpression: 1,\n ObjectExpression: 1,\n ImportDeclaration: 1,\n flatTernaryExpressions: false,\n ignoreComments: false,\n },\n ],\n '@stylistic/indent-binary-ops': ['error', 4],\n\n // specify whether double or single quotes should be used in JSX attributes\n // https://eslint.style/rules/default/jsx-quotes\n '@stylistic/jsx-quotes': ['off', 'prefer-double'],\n\n // enforces spacing between keys and values in object literal properties\n // https://eslint.style/rules/default/key-spacing\n '@stylistic/key-spacing': ['error', { beforeColon: false, afterColon: true }],\n\n // require a space before & after certain keywords\n // https://eslint.style/rules/default/keyword-spacing\n '@stylistic/keyword-spacing': [\n 'error',\n {\n before: true,\n after: true,\n overrides: {\n return: { after: true },\n throw: { after: true },\n case: { after: true },\n },\n },\n ],\n\n // enforce position of line comments\n // https://eslint.style/rules/default/line-comment-position\n '@stylistic/line-comment-position': [\n 'off',\n {\n position: 'above',\n ignorePattern: '',\n applyDefaultIgnorePatterns: true,\n },\n ],\n\n // disallow mixed 'LF' and 'CRLF' as linebreaks\n // https://eslint.style/rules/default/linebreak-style\n '@stylistic/linebreak-style': ['error', 'unix'],\n\n // require or disallow an empty line between class members\n // https://eslint.style/rules/default/lines-between-class-members\n '@stylistic/lines-between-class-members': [\n 'error',\n 'always',\n { exceptAfterSingleLine: false },\n ],\n\n // enforces empty lines around comments\n // https://eslint.style/rules/default/lines-around-comment\n '@stylistic/lines-around-comment': 'off',\n\n // Require or disallow logical assignment logical operator shorthand\n // https://eslint.org/docs/rules/logical-assignment-operators\n 'logical-assignment-operators': [\n 'error',\n 'always',\n {\n enforceForIfStatements: true,\n },\n ],\n\n // specify the maximum depth that blocks can be nested\n // https://eslint.org/docs/rules/max-depth\n 'max-depth': ['off', 4],\n\n // specify the maximum length of a line in your program\n // https://eslint.style/rules/default/max-len\n '@stylistic/max-len': [\n 'error',\n 100,\n 4,\n {\n ignoreUrls: true,\n ignoreComments: false,\n ignoreRegExpLiterals: true,\n ignoreStrings: true,\n ignoreTemplateLiterals: true,\n },\n ],\n\n // specify the max number of lines in a file\n // https://eslint.org/docs/rules/max-lines\n 'max-lines': [\n 'off',\n {\n max: 300,\n skipBlankLines: true,\n skipComments: true,\n },\n ],\n\n // enforce a maximum function length\n // https://eslint.org/docs/rules/max-lines-per-function\n 'max-lines-per-function': [\n 'off',\n {\n max: 50,\n skipBlankLines: true,\n skipComments: true,\n IIFEs: true,\n },\n ],\n\n // specify the maximum depth callbacks can be nested\n // https://eslint.org/docs/rules/max-nested-callbacks\n 'max-nested-callbacks': 'off',\n\n // limits the number of parameters that can be used in the function declaration.\n // https://eslint.org/docs/rules/max-params\n 'max-params': ['off', 3],\n\n // specify the maximum number of statement allowed in a function\n // https://eslint.org/docs/rules/max-statements\n 'max-statements': ['off', 10],\n\n // restrict the number of statements per line\n // https://eslint.style/rules/default/max-statements-per-line\n '@stylistic/max-statements-per-line': ['off', { max: 1 }],\n\n // enforce a particular style for multiline comments\n // https://eslint.style/rules/default/multiline-comment-style\n '@stylistic/multiline-comment-style': ['off', 'starred-block'],\n\n // require multiline ternary\n // https://eslint.style/rules/default/multiline-ternary\n '@stylistic/multiline-ternary': ['error', 'always-multiline'],\n\n // require a capital letter for constructors\n // https://eslint.org/docs/rules/new-cap\n 'new-cap': [\n 'error',\n {\n newIsCap: true,\n newIsCapExceptions: [],\n capIsNew: false,\n capIsNewExceptions: [\n 'Immutable.Map',\n 'Immutable.Set',\n 'Immutable.List',\n ],\n },\n ],\n\n // disallow the omission of parentheses when invoking a constructor with no arguments\n // https://eslint.style/rules/default/new-parens\n '@stylistic/new-parens': 'error',\n\n // enforces new line after each method call in the chain to make it\n // more readable and easy to maintain\n // https://eslint.style/rules/default/newline-per-chained-call\n '@stylistic/newline-per-chained-call': ['error', { ignoreChainWithDepth: 4 }],\n\n // disallow use of the Array constructor\n // https://eslint.org/docs/rules/no-array-constructor\n 'no-array-constructor': 'error',\n\n // disallow use of bitwise operators\n // https://eslint.org/docs/rules/no-bitwise\n 'no-bitwise': 'error',\n\n // disallow use of the continue statement\n // https://eslint.org/docs/rules/no-continue\n 'no-continue': 'error',\n\n // disallow comments inline after code\n // https://eslint.org/docs/rules/no-inline-comments\n 'no-inline-comments': 'off',\n\n // disallow if as the only statement in an else block\n // https://eslint.org/docs/rules/no-lonely-if\n 'no-lonely-if': 'error',\n\n // disallow un-paren'd mixes of different operators\n // httphttps://eslint.style/rules/default/no-mixed-operators\n '@stylistic/no-mixed-operators': [\n 'error',\n {\n // the list of arithmetic groups disallows mixing `%` and `**`\n // with other arithmetic operators.\n groups: [\n ['%', '**'],\n ['%', '+'],\n ['%', '-'],\n ['%', '*'],\n ['%', '/'],\n ['/', '*'],\n [\n '&',\n '|',\n '<<',\n '>>',\n '>>>',\n ],\n [\n '==',\n '!=',\n '===',\n '!==',\n ],\n ['&&', '||'],\n ],\n allowSamePrecedence: false,\n },\n ],\n\n // disallow mixed spaces and tabs for indentation\n // https://eslint.style/rules/default/no-mixed-spaces-and-tabs\n '@stylistic/no-mixed-spaces-and-tabs': 'error',\n\n // disallow use of chained assignment expressions\n // https://eslint.org/docs/rules/no-multi-assign\n 'no-multi-assign': ['error'],\n\n // disallow multiple empty lines\n // only one newline at the end\n // and no new lines at the beginning\n // https://eslint.style/rules/default/no-multiple-empty-lines\n '@stylistic/no-multiple-empty-lines': ['error', { max: 1, maxBOF: 0, maxEOF: 0 }],\n\n // disallow negated conditions\n // https://eslint.org/docs/rules/no-negated-condition\n 'no-negated-condition': 'off',\n\n // disallow nested ternary expressions\n // https://eslint.org/docs/rules/no-nested-ternary\n 'no-nested-ternary': 'error',\n\n // disallow calls to the Object constructor without an argument\n // https://eslint.org/docs/rules/no-object-constructor\n 'no-object-constructor': 'error',\n\n // disallow use of unary operators, ++ and --\n // https://eslint.org/docs/rules/no-plusplus\n 'no-plusplus': 'error',\n\n // disallow certain syntax forms\n // https://eslint.org/docs/rules/no-restricted-syntax\n 'no-restricted-syntax': [\n 'error',\n {\n selector: 'ForInStatement',\n message:\n 'for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array.',\n },\n // {\n // selector: 'ForOfStatement',\n // message:\n // 'iterators/generators require regenerator-runtime,\n // which is too heavyweight for this guide to allow them.\n // Separately, loops should be avoided in favor of array iterations.',\n // },\n {\n selector: 'LabeledStatement',\n message:\n 'Labels are a form of GOTO; using them makes code confusing and hard to maintain and understand.',\n },\n {\n selector: 'WithStatement',\n message:\n '`with` is disallowed in strict mode because it makes code impossible to predict and optimize.',\n },\n ],\n\n // disallow tab characters entirely\n // https://eslint.style/rules/default/no-tabs\n '@stylistic/no-tabs': 'error',\n\n // disallow the use of ternary operators\n // https://eslint.org/docs/rules/no-ternary\n 'no-ternary': 'off',\n\n // disallow trailing whitespace at the end of lines\n // https://eslint.style/rules/default/no-trailing-spaces\n '@stylistic/no-trailing-spaces': [\n 'error',\n {\n skipBlankLines: false,\n ignoreComments: false,\n },\n ],\n\n // disallow dangling underscores in identifiers\n // https://eslint.org/docs/rules/no-underscore-dangle\n 'no-underscore-dangle': [\n 'error',\n {\n allow: [],\n allowAfterThis: false,\n allowAfterSuper: false,\n enforceInMethodNames: true,\n },\n ],\n\n // disallow the use of Boolean literals in conditional expressions\n // also, prefer `a || b` over `a ? a : b`\n // https://eslint.org/docs/rules/no-unneeded-ternary\n 'no-unneeded-ternary': ['error', { defaultAssignment: false }],\n\n // disallow whitespace before properties\n // https://eslint.style/rules/default/no-whitespace-before-property\n '@stylistic/no-whitespace-before-property': 'error',\n\n // enforce the location of single-line statements\n // https://eslint.style/rules/default/nonblock-statement-body-position\n '@stylistic/nonblock-statement-body-position': [\n 'error',\n 'beside',\n { overrides: {} },\n ],\n\n // require padding inside curly braces\n // https://eslint.style/rules/default/object-curly-spacing\n '@stylistic/object-curly-spacing': ['error', 'always'],\n\n // enforce line breaks between braces\n // https://eslint.style/rules/default/object-curly-newline\n '@stylistic/object-curly-newline': [\n 'error',\n {\n ObjectExpression: {\n minProperties: 4,\n multiline: true,\n consistent: true,\n },\n ObjectPattern: {\n minProperties: 4,\n multiline: true,\n consistent: true,\n },\n ImportDeclaration: {\n minProperties: 4,\n multiline: true,\n consistent: true,\n },\n ExportDeclaration: {\n minProperties: 4,\n multiline: true,\n consistent: true,\n },\n },\n ],\n\n // enforce \"same line\" or \"multiple line\" on object properties.\n // https://eslint.style/rules/default/object-property-newline\n '@stylistic/object-property-newline': [\n 'error',\n {\n allowAllPropertiesOnSameLine: true,\n },\n ],\n\n // allow just one var statement per function\n // https://eslint.org/docs/rules/one-var\n 'one-var': ['error', 'never'],\n\n // require a newline around variable declaration\n // https://eslint.style/rules/default/one-var-declaration-per-line\n '@stylistic/one-var-declaration-per-line': ['error', 'always'],\n\n // require assignment operator shorthand where possible or prohibit it entirely\n // https://eslint.org/docs/rules/operator-assignment\n 'operator-assignment': ['error', 'always'],\n\n // Requires operator at the beginning of the line in multiline statements\n // https://eslint.style/rules/default/operator-linebreak\n '@stylistic/operator-linebreak': [\n 'error',\n 'before',\n { overrides: { '=': 'none' } },\n ],\n\n // disallow padding within blocks\n // https://eslint.style/rules/default/padded-blocks\n '@stylistic/padded-blocks': [\n 'error',\n {\n blocks: 'never',\n classes: 'never',\n switches: 'never',\n },\n {\n allowSingleLineBlocks: true,\n },\n ],\n\n // Require or disallow padding lines between statements\n // https://eslint.style/rules/default/padding-line-between-statements\n '@stylistic/padding-line-between-statements': 'off',\n\n // Disallow the use of Math.pow in favor of the ** operator\n // https://eslint.org/docs/rules/prefer-exponentiation-operator\n 'prefer-exponentiation-operator': 'error',\n\n // Prefer use of an object spread over Object.assign\n // https://eslint.org/docs/rules/prefer-object-spread\n 'prefer-object-spread': 'error',\n\n // require quotes around object literal property names\n // https://eslint.style/rules/default/quote-props\n '@stylistic/quote-props': [\n 'error',\n 'as-needed',\n { keywords: false, unnecessary: true, numbers: false },\n ],\n\n // specify whether double or single quotes should be used\n // https://eslint.style/rules/default/quotes\n '@stylistic/quotes': [\n 'error',\n 'single',\n { avoidEscape: true },\n ],\n\n // require or disallow use of semicolons instead of ASI\n // https://eslint.style/rules/default/semi\n '@stylistic/semi': ['error', 'always'],\n\n // enforce spacing before and after semicolons\n // https://eslint.style/rules/default/semi-spacing\n '@stylistic/semi-spacing': ['error', { before: false, after: true }],\n\n // Enforce location of semicolons\n // https://eslint.style/rules/default/semi-style\n '@stylistic/semi-style': ['error', 'last'],\n\n // requires object keys to be sorted\n // https://eslint.org/docs/rules/sort-keys\n 'sort-keys': [\n 'off',\n 'asc',\n { caseSensitive: false, natural: true },\n ],\n\n // sort variables within the same declaration block\n // https://eslint.org/docs/rules/sort-vars\n 'sort-vars': 'off',\n\n // require or disallow space before blocks\n // https://eslint.style/rules/default/space-before-blocks\n '@stylistic/space-before-blocks': 'error',\n\n // require or disallow space before function opening parenthesis\n // https://eslint.style/rules/default/space-before-function-paren\n '@stylistic/space-before-function-paren': [\n 'error',\n {\n anonymous: 'always',\n named: 'never',\n asyncArrow: 'always',\n },\n ],\n\n // require or disallow spaces inside parentheses\n // https://eslint.style/rules/default/space-in-parens\n '@stylistic/space-in-parens': ['error', 'never'],\n\n // require spaces around operators\n // https://eslint.style/rules/default/space-infix-ops\n '@stylistic/space-infix-ops': 'error',\n\n // Require or disallow spaces before/after unary operators\n // https://eslint.style/rules/default/space-unary-ops\n '@stylistic/space-unary-ops': [\n 'error',\n {\n words: true,\n nonwords: false,\n overrides: {},\n },\n ],\n\n // require or disallow a space immediately following the // or /* in a comment\n // https://eslint.style/rules/default/spaced-comment\n '@stylistic/spaced-comment': [\n 'error',\n 'always',\n {\n line: {\n exceptions: ['-', '+'],\n markers: [\n '=',\n '!',\n '/',\n ], // space here to support sprockets directives, slash for TS /// comments\n },\n block: {\n exceptions: ['-', '+'],\n markers: [\n '=',\n '!',\n ':',\n '::',\n ], // space here to support sprockets directives and flow comment types\n balanced: true,\n },\n },\n ],\n\n // Enforce spacing around colons of switch statements\n // https://eslint.style/rules/default/switch-colon-spacing\n '@stylistic/switch-colon-spacing': ['error', { after: true, before: false }],\n\n // Require or disallow spacing between template tags and their literals\n // https://eslint.style/rules/default/template-tag-spacing\n '@stylistic/template-tag-spacing': ['error', 'never'],\n\n // require or disallow the Unicode Byte Order Mark\n // https://eslint.org/docs/rules/unicode-bom\n 'unicode-bom': ['error', 'never'],\n\n // require regex literals to be wrapped in parentheses\n // https://eslint.style/rules/default/wrap-regex\n '@stylistic/wrap-regex': 'off',\n },\n} satisfies Linter.Config;\n","import confusingBrowserGlobals from 'confusing-browser-globals';\n\nimport type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/variables',\n rules: {\n // enforce or disallow variable initializations at definition\n // https://eslint.org/docs/rules/init-declarations\n 'init-declarations': 'off',\n\n // disallow deletion of variables\n // https://eslint.org/docs/rules/no-delete-var\n 'no-delete-var': 'error',\n\n // disallow labels that share a name with a variable\n // https://eslint.org/docs/rules/no-label-var\n 'no-label-var': 'error',\n\n // disallow specific globals\n // https://eslint.org/docs/rules/no-restricted-globals\n 'no-restricted-globals': [\n 'error',\n {\n name: 'isFinite',\n message:\n 'Use Number.isFinite instead https://github.com/airbnb/javascript#standard-library--isfinite',\n },\n {\n name: 'isNaN',\n message:\n 'Use Number.isNaN instead https://github.com/airbnb/javascript#standard-library--isnan',\n },\n ...confusingBrowserGlobals.map((g) => ({\n name: g,\n message: `Use window.${g} instead. https://github.com/facebook/create-react-app/blob/HEAD/packages/confusing-browser-globals/README.md`,\n })),\n ],\n\n // disallow declaration of variables already declared in the outer scope\n // https://eslint.org/docs/rules/no-shadow\n 'no-shadow': 'error',\n\n // disallow shadowing of names such as arguments\n // https://eslint.org/docs/rules/no-shadow-restricted-names\n 'no-shadow-restricted-names': 'error',\n\n // disallow use of undeclared variables unless mentioned in a /*global */ block\n // https://eslint.org/docs/rules/no-undef\n 'no-undef': 'error',\n\n // disallow use of undefined when initializing variables\n // https://eslint.org/docs/rules/no-undef-init\n 'no-undef-init': 'error',\n\n // disallow use of undefined variable\n // https://eslint.org/docs/rules/no-undefined\n 'no-undefined': 'off',\n\n // disallow declaration of variables that are not used in the code\n // https://eslint.org/docs/rules/no-unused-vars\n 'no-unused-vars': [\n 'error',\n { vars: 'all', args: 'after-used', ignoreRestSiblings: true },\n ],\n\n // disallow use of variables before they are defined\n // https://eslint.org/docs/rules/no-use-before-define\n 'no-use-before-define': [\n 'error',\n { functions: true, classes: true, variables: true },\n ],\n },\n} satisfies Linter.Config;\n","import globals from 'globals';\n\nimport type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/airbnb/browser',\n languageOptions: {\n globals: globals.browser,\n },\n} as const satisfies Linter.Config;\n","import stylistic from '@stylistic/eslint-plugin';\nimport importx from 'eslint-plugin-import-x';\nimport ts from 'typescript-eslint';\n\nimport type { Linter } from 'eslint';\n\ntype Config = Linter.Config;\ntype Plugin = NonNullable<Config['plugins']>[string];\ntype Parser = NonNullable<Config['languageOptions']>['parser'];\n\nexport default {\n name: '@rhyster/eslint-config/general',\n plugins: {\n '@typescript-eslint': ts.plugin as Plugin,\n '@stylistic': stylistic as Plugin,\n 'import-x': importx as unknown as Plugin,\n },\n languageOptions: {\n parser: ts.parser as Parser,\n parserOptions: {\n projectService: true,\n },\n },\n settings: {\n 'import-x/parsers': {\n espree: [\n '.js',\n '.mjs',\n ],\n '@typescript-eslint/parser': [\n '.ts',\n '.d.ts',\n ],\n },\n 'import-x/resolver': {\n node: {\n extensions: [\n '.mjs',\n '.js',\n '.json',\n '.ts',\n '.d.ts',\n ],\n },\n },\n 'import-x/extensions': [\n '.js',\n '.mjs',\n '.ts',\n '.d.ts',\n ],\n 'import-x/core-modules': [],\n 'import-x/ignore': [\n 'node_modules', '\\\\.(coffee|scss|css|less|hbs|svg|json)$',\n ],\n 'import-x/external-module-folders': [\n 'node_modules',\n 'node_modules/@types',\n ],\n },\n} as const satisfies Config;\n","import type { Linter } from 'eslint';\n\nexport default {\n name: '@rhyster/eslint-config/typescript',\n rules: {\n // https://typescript-eslint.io/rules/naming-convention\n '@typescript-eslint/naming-convention': 'error',\n camelcase: 'off',\n\n // https://typescript-eslint.io/rules/default-param-last\n '@typescript-eslint/default-param-last': 'error',\n 'default-param-last': 'off',\n\n // https://typescript-eslint.io/rules/dot-notation\n '@typescript-eslint/dot-notation': 'error',\n 'dot-notation': 'off',\n\n // https://typescript-eslint.io/rules/no-array-constructor\n '@typescript-eslint/no-array-constructor': 'error',\n 'no-array-constructor': 'off',\n\n // https://typescript-eslint.io/rules/no-empty-function\n '@typescript-eslint/no-empty-function': 'error',\n 'no-empty-function': 'off',\n\n // https://typescript-eslint.io/rules/no-implied-eval\n '@typescript-eslint/no-implied-eval': 'error',\n 'no-implied-eval': 'off',\n 'no-new-func': 'off',\n\n // https://typescript-eslint.io/rules/no-loop-func\n '@typescript-eslint/no-loop-func': 'error',\n 'no-loop-func': 'off',\n\n // https://typescript-eslint.io/rules/no-magic-numbers\n '@typescript-eslint/no-magic-numbers': 'off',\n 'no-magic-numbers': 'off',\n\n // https://typescript-eslint.io/rules/no-shadow\n '@typescript-eslint/no-shadow': 'error',\n 'no-shadow': 'off',\n\n // https://typescript-eslint.io/rules/only-throw-error\n '@typescript-eslint/only-throw-error': 'error',\n 'no-throw-literal': 'off',\n\n // https://typescript-eslint.io/rules/no-unused-expressions\n '@typescript-eslint/no-unused-expressions': 'error',\n 'no-unused-expressions': 'off',\n\n // https://typescript-eslint.io/rules/no-unused-vars\n '@typescript-eslint/no-unused-vars': 'error',\n 'no-unused-vars': 'off',\n\n // https://typescript-eslint.io/rules/no-use-before-define\n '@typescript-eslint/no-use-before-define': 'error',\n 'no-use-before-define': 'off',\n\n // https://typescript-eslint.io/rules/no-useless-constructor\n '@typescript-eslint/no-useless-constructor': 'error',\n 'no-useless-constructor': 'off',\n\n // https://typescript-eslint.io/rules/prefer-promise-reject-errors\n '@typescript-eslint/prefer-promise-reject-errors': 'error',\n 'prefer-promise-reject-errors': 'off',\n\n // https://typescript-eslint.io/rules/require-await\n '@typescript-eslint/require-await': 'off',\n 'require-await': 'off',\n\n // https://typescript-eslint.io/rules/return-await\n '@typescript-eslint/return-await': ['error', 'in-try-catch'],\n 'no-return-await': 'off',\n\n // https://typescript-eslint.io/rules/no-dupe-class-members\n // checked by the TypeScript compiler\n 'no-dupe-class-members': 'off',\n\n // https://typescript-eslint.io/rules/no-redeclare\n // checked by the TypeScript compiler\n 'no-redeclare': 'off',\n\n // https://typescript-eslint.io/troubleshooting/typed-linting/performance/#eslint-plugin-import\n 'import-x/named': 'off',\n 'import-x/namespace': 'off',\n 'import-x/default': 'off',\n 'import-x/no-named-as-default-member': 'off',\n 'import-x/no-unresolved': 'off',\n\n // https://typescript-eslint.io/rules/strict-boolean-expressions/\n '@typescript-eslint/strict-boolean-expressions': 'error',\n },\n} satisfies Linter.Config;\n","import vuePlugin from 'eslint-plugin-vue';\nimport ts from 'typescript-eslint';\nimport vueParser from 'vue-eslint-parser';\n\nimport general from './general.ts';\n\nimport type { Linter } from 'eslint';\n\ntype Config = Linter.Config;\ntype Plugin = NonNullable<Config['plugins']>[string];\ntype Parser = NonNullable<Config['languageOptions']>['parser'];\n\nconst generalVue = {\n ...general,\n name: '@rhyster/eslint-config/airbnb/general-vue',\n plugins: {\n ...general.plugins,\n vue: vuePlugin as Plugin,\n },\n settings: {\n ...general.settings,\n 'import-x/parsers': {\n ...general.settings['import-x/parsers'],\n 'vue-eslint-parser': [\n '.vue',\n ],\n },\n 'import-x/resolver': {\n node: {\n extensions: [\n ...general.settings['import-x/resolver'].node.extensions,\n '.vue',\n ],\n },\n },\n 'import-x/extensions': [\n ...general.settings['import-x/extensions'],\n '.vue',\n ],\n },\n} as const satisfies Config;\n\nconst setupVue: Config = {\n name: '@rhyster/eslint-config/setup-vue',\n languageOptions: {\n parser: vueParser,\n parserOptions: {\n projectService: true,\n parser: ts.parser as Parser,\n extraFileExtensions: ['.vue'],\n },\n },\n} as const satisfies Config;\n\nconst vueConfigs: Config = {\n name: '@rhyster/eslint-config/vue-configs',\n rules: {\n 'vue/html-indent': ['error', 4],\n 'import-x/no-unused-modules': 'off',\n },\n} as const satisfies Config;\n\nexport default [\n generalVue,\n ...vuePlugin.configs['flat/recommended'] as unknown as Config[],\n setupVue,\n vueConfigs,\n] satisfies Config[];\n","import js from '@eslint/js';\nimport nodePlugin from 'eslint-plugin-n';\nimport globals from 'globals';\nimport ts from 'typescript-eslint';\n\nimport bestPractices from './rules/airbnb/best-practices.ts';\nimport errors from './rules/airbnb/errors.ts';\nimport es6 from './rules/airbnb/es6.ts';\nimport imports from './rules/airbnb/imports.ts';\nimport nodeRules from './rules/airbnb/node.ts';\nimport strict from './rules/airbnb/strict.ts';\nimport style from './rules/airbnb/style.ts';\nimport variables from './rules/airbnb/variables.ts';\nimport browserRules from './rules/browser.ts';\nimport general from './rules/general.ts';\nimport typescript from './rules/typescript.ts';\nimport vueRules from './rules/vue.ts';\n\nimport type { Linter } from 'eslint';\n\ntype Config = Linter.Config;\n\nconst coreConfigs = [\n js.configs.recommended,\n general,\n ...ts.configs.strictTypeChecked as unknown as Config[],\n ...ts.configs.stylisticTypeChecked as unknown as Config[],\n bestPractices,\n errors,\n style,\n variables,\n es6,\n imports,\n strict,\n typescript,\n] as const satisfies Config[];\n\nexport const core = coreConfigs.map((config) => ({\n ...config,\n files: ['src/**/*.ts'],\n})) satisfies Config[];\n\nexport const node = [\n ...core,\n {\n name: '@rhyster/eslint-config/setup-node',\n files: ['src/**/*.ts'],\n languageOptions: {\n globals: globals.node,\n },\n plugins: {\n n: nodePlugin,\n },\n },\n {\n ...nodeRules,\n files: ['src/**/*.ts'],\n },\n] as const satisfies Config[];\n\nexport const browser = [\n ...core,\n {\n ...browserRules,\n files: ['src/**/*.ts'],\n },\n] as const satisfies Config[];\n\nexport const vue = [\n ...browser.map((config) => ({\n ...config,\n files: ['src/**/*.ts', 'src/**/*.vue'],\n })),\n ...vueRules.map((config) => ({\n ...config,\n files: ['src/**/*.vue'],\n })),\n] as const satisfies Config[];\n"],"names":["confusingBrowserGlobals","globals","ts","stylistic","importx","vuePlugin","vueParser","js","nodePlugin"],"mappings":"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"}