schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
eslintrc.json | class-methods-use-this | Enforce that class methods utilize this | {} |
eslintrc.json | complexity | Enforce a maximum cyclomatic complexity allowed in a program | {} |
eslintrc.json | consistent-return | Require return statements to either always or never specify values | {} |
eslintrc.json | curly | Enforce consistent brace style for all control statements | {} |
eslintrc.json | default-case | Require default cases in switch statements | {} |
eslintrc.json | dot-location | Enforce consistent newlines before and after dots | {} |
eslintrc.json | dot-notation | Enforce dot notation whenever possible | {} |
eslintrc.json | eqeqeq | Require the use of === and !== | {} |
eslintrc.json | guard-for-in | Require for-in loops to include an if statement | {} |
eslintrc.json | no-alert | Disallow the use of alert, confirm, and prompt | {} |
eslintrc.json | no-caller | Disallow the use of arguments.caller or arguments.callee | {} |
eslintrc.json | no-case-declarations | Disallow lexical declarations in case clauses | {} |
eslintrc.json | no-div-regex | Disallow division operators explicitly at the beginning of regular expressions | {} |
eslintrc.json | no-else-return | Disallow else blocks after return statements in if statements | {} |
eslintrc.json | no-empty-function | Disallow empty functions | {} |
eslintrc.json | no-empty-pattern | Disallow empty destructuring patterns | {} |
eslintrc.json | no-eq-null | Disallow null comparisons without type-checking operators | {} |
eslintrc.json | no-eval | Disallow the use of eval() | {} |
eslintrc.json | no-extend-native | Disallow extending native types | {} |
eslintrc.json | no-extra-bind | Disallow unnecessary calls to .bind() | {} |
eslintrc.json | no-extra-label | Disallow unnecessary labels | {} |
eslintrc.json | no-fallthrough | Disallow fallthrough of case statements | {} |
eslintrc.json | no-floating-decimal | Disallow leading or trailing decimal points in numeric literals | {} |
eslintrc.json | no-global-assign | Disallow assignments to native objects or read-only global variables | {} |
eslintrc.json | no-implicit-coercion | Disallow shorthand type conversions | {} |
eslintrc.json | no-implicit-globals | Disallow var and named function declarations in the global scope | {} |
eslintrc.json | no-implied-eval | Disallow the use of eval()-like methods | {} |
eslintrc.json | no-invalid-this | Disallow this keywords outside of classes or class-like objects | {} |
eslintrc.json | no-iterator | Disallow the use of the __iterator__ property | {} |
eslintrc.json | no-labels | Disallow labeled statements | {} |
eslintrc.json | no-lone-blocks | Disallow unnecessary nested blocks | {} |
eslintrc.json | no-loop-func | Disallow function declarations and expressions inside loop statements | {} |
eslintrc.json | no-magic-numbers | Disallow magic numbers | {} |
eslintrc.json | no-multi-spaces | Disallow multiple spaces | {} |
eslintrc.json | no-multi-str | Disallow multiline strings | {} |
eslintrc.json | no-new | Disallow new operators outside of assignments or comparisons | {} |
eslintrc.json | no-new-func | Disallow new operators with the Function object | {} |
eslintrc.json | no-new-wrappers | Disallow new operators with the String, Number, and Boolean objects | {} |
eslintrc.json | no-octal | Disallow octal literals | {} |
eslintrc.json | no-octal-escape | Disallow octal escape sequences in string literals | {} |
eslintrc.json | no-param-reassign | Disallow reassigning function parameters | {} |
eslintrc.json | no-proto | Disallow the use of the __proto__ property | {} |
eslintrc.json | no-redeclare | Disallow var redeclaration | {} |
eslintrc.json | no-restricted-properties | Disallow certain properties on certain objects | {} |
eslintrc.json | no-return-assign | Disallow assignment operators in return statements | {} |
eslintrc.json | no-return-await | Disallow unnecessary return await | {} |
eslintrc.json | no-script-url | Disallow javascript: urls | {} |
eslintrc.json | no-self-assign | Disallow assignments where both sides are exactly the same | {} |
eslintrc.json | no-self-compare | Disallow comparisons where both sides are exactly the same | {} |
eslintrc.json | no-sequences | Disallow comma operators | {} |
eslintrc.json | no-throw-literal | Disallow throwing literals as exceptions | {} |
eslintrc.json | no-unmodified-loop-condition | Disallow unmodified loop conditions | {} |
eslintrc.json | no-unused-expressions | Disallow unused expressions | {} |
eslintrc.json | no-unused-labels | Disallow unused labels | {} |
eslintrc.json | no-useless-call | Disallow unnecessary calls to .call() and .apply() | {} |
eslintrc.json | no-useless-concat | Disallow unnecessary concatenation of literals or template literals | {} |
eslintrc.json | no-useless-escape | Disallow unnecessary escape characters | {} |
eslintrc.json | no-useless-return | Disallow redundant return statements | {} |
eslintrc.json | no-void | Disallow void operators | {} |
eslintrc.json | no-warning-comments | Disallow specified warning terms in comments | {} |
eslintrc.json | no-with | Disallow with statements | {} |
eslintrc.json | prefer-promise-reject-errors | Require using Error objects as Promise rejection reasons | {} |
eslintrc.json | radix | Enforce the consistent use of the radix argument when using parseInt() | {} |
eslintrc.json | require-await | Disallow async functions which have no await expression | {} |
eslintrc.json | vars-on-top | Require var declarations be placed at the top of their containing scope | {} |
eslintrc.json | wrap-iife | Require parentheses around immediate function invocations | {} |
eslintrc.json | yoda | Require or Disallow "Yoda" conditions | {} |
eslintrc.json | strict | require or disallow strict mode directives | {} |
eslintrc.json | init-declarations | Require or disallow initialization in var declarations | {} |
eslintrc.json | no-catch-shadow | Disallow catch clause parameters from shadowing variables in the outer scope | {} |
eslintrc.json | no-delete-var | Disallow deleting variables | {} |
eslintrc.json | no-label-var | Disallow labels that share a name with a variable | {} |
eslintrc.json | no-restricted-globals | Disallow specified global variables | {} |
eslintrc.json | no-shadow | Disallow var declarations from shadowing variables in the outer scope | {} |
eslintrc.json | no-shadow-restricted-names | Disallow identifiers from shadowing restricted names | {} |
eslintrc.json | no-undef | Disallow the use of undeclared variables unless mentioned in /*global */ comments | {} |
eslintrc.json | no-undefined | Disallow the use of undefined as an identifier | {} |
eslintrc.json | no-undef-init | Disallow initializing variables to undefined | {} |
eslintrc.json | no-unused-vars | Disallow unused variables | {} |
eslintrc.json | no-use-before-define | Disallow the use of variables before they are defined | {} |
eslintrc.json | callback-return | Require return statements after callbacks | {} |
eslintrc.json | global-require | Require require() calls to be placed at top-level module scope | {} |
eslintrc.json | handle-callback-err | Require error handling in callbacks | {} |
eslintrc.json | no-buffer-constructor | Disallow use of the Buffer() constructor | {} |
eslintrc.json | no-mixed-requires | Disallow require calls to be mixed with regular var declarations | {} |
eslintrc.json | no-new-require | Disallow new operators with calls to require | {} |
eslintrc.json | no-path-concat | Disallow string concatenation with __dirname and __filename | {} |
eslintrc.json | no-process-env | Disallow the use of process.env | {} |
eslintrc.json | no-process-exit | Disallow the use of process.exit() | {} |
eslintrc.json | no-restricted-modules | Disallow specified modules when loaded by require | {} |
eslintrc.json | no-sync | Disallow synchronous methods | {} |
eslintrc.json | array-bracket-newline | Enforce line breaks after opening and before closing array brackets | {} |
eslintrc.json | array-bracket-spacing | Enforce consistent spacing inside array brackets | {} |
eslintrc.json | array-element-newline | Enforce line breaks after each array element | {} |
eslintrc.json | block-spacing | Enforce consistent spacing inside single-line blocks | {} |
eslintrc.json | brace-style | Enforce consistent brace style for blocks | {} |
eslintrc.json | camelcase | Enforce camelcase naming convention | {} |
eslintrc.json | capitalized-comments | Enforce or disallow capitalization of the first letter of a comment | {} |
eslintrc.json | comma-dangle | Require or disallow trailing commas | {} |
eslintrc.json | comma-spacing | Enforce consistent spacing before and after commas | {} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.