schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
eslintrc.json | comma-style | Enforce consistent comma style | {} |
eslintrc.json | computed-property-spacing | Enforce consistent spacing inside computed property brackets | {} |
eslintrc.json | consistent-this | Enforce consistent naming when capturing the current execution context | {} |
eslintrc.json | eol-last | Enforce at least one newline at the end of files | {} |
eslintrc.json | func-call-spacing | Require or disallow spacing between function identifiers and their invocations | {} |
eslintrc.json | func-name-matching | Require function names to match the name of the variable or property to which they are assigned | {} |
eslintrc.json | func-names | Require or disallow named function expressions | {} |
eslintrc.json | func-style | Enforce the consistent use of either function declarations or expressions | {} |
eslintrc.json | function-call-argument-newline | Enforce line breaks between arguments of a function call | {} |
eslintrc.json | function-paren-newline | Enforce consistent line breaks inside function parentheses | {} |
eslintrc.json | id-blacklist | Disallow specified identifiers | {} |
eslintrc.json | id-length | Enforce minimum and maximum identifier lengths | {} |
eslintrc.json | id-match | Require identifiers to match a specified regular expression | {} |
eslintrc.json | implicit-arrow-linebreak | Enforce the location of arrow function bodies | {} |
eslintrc.json | indent | Enforce consistent indentation | {} |
eslintrc.json | indent-legacy | Enforce consistent indentation (legacy, deprecated) | {} |
eslintrc.json | jsx-quotes | Enforce the consistent use of either double or single quotes in JSX attributes | {} |
eslintrc.json | key-spacing | Enforce consistent spacing between keys and values in object literal properties | {} |
eslintrc.json | keyword-spacing | Enforce consistent spacing before and after keywords | {} |
eslintrc.json | line-comment-position | Enforce position of line comments | {} |
eslintrc.json | lines-between-class-members | Require or disallow an empty line between class members | {} |
eslintrc.json | linebreak-style | Enforce consistent linebreak style | {} |
eslintrc.json | lines-around-comment | Require empty lines around comments | {} |
eslintrc.json | lines-around-directive | Require or disallow newlines around directives | {} |
eslintrc.json | max-depth | Enforce a maximum depth that blocks can be nested | {} |
eslintrc.json | max-len | Enforce a maximum line length | {} |
eslintrc.json | max-lines | Enforce a maximum number of lines per file | {} |
eslintrc.json | max-nested-callbacks | Enforce a maximum depth that callbacks can be nested | {} |
eslintrc.json | max-params | Enforce a maximum number of parameters in function definitions | {} |
eslintrc.json | max-statements | Enforce a maximum number of statements allowed in function blocks | {} |
eslintrc.json | max-statements-per-line | Enforce a maximum number of statements allowed per line | {} |
eslintrc.json | multiline-comment-style | Enforce a particular style for multiline comments | {} |
eslintrc.json | multiline-ternary | Enforce newlines between operands of ternary expressions | {} |
eslintrc.json | new-cap | Require constructor function names to begin with a capital letter | {} |
eslintrc.json | newline-after-var | Require or disallow an empty line after var declarations | {} |
eslintrc.json | newline-before-return | Require an empty line before return statements | {} |
eslintrc.json | newline-per-chained-call | Require a newline after each call in a method chain | {} |
eslintrc.json | new-parens | Require parentheses when invoking a constructor with no arguments | {} |
eslintrc.json | no-array-constructor | Disallow Array constructors | {} |
eslintrc.json | no-bitwise | Disallow bitwise operators | {} |
eslintrc.json | no-continue | Disallow continue statements | {} |
eslintrc.json | no-inline-comments | Disallow inline comments after code | {} |
eslintrc.json | no-lonely-if | Disallow if statements as the only statement in else blocks | {} |
eslintrc.json | no-mixed-operators | Disallow mixed binary operators | {} |
eslintrc.json | no-mixed-spaces-and-tabs | Disallow mixed spaces and tabs for indentation | {} |
eslintrc.json | no-multi-assign | Disallow use of chained assignment expressions | {} |
eslintrc.json | no-multiple-empty-lines | Disallow multiple empty lines | {} |
eslintrc.json | no-negated-condition | Disallow negated conditions | {} |
eslintrc.json | no-nested-ternary | Disallow nested ternary expressions | {} |
eslintrc.json | no-new-object | Disallow Object constructors | {} |
eslintrc.json | no-plusplus | Disallow the unary operators ++ and -- | {} |
eslintrc.json | no-restricted-syntax | Disallow specified syntax | {} |
eslintrc.json | no-tabs | Disallow tabs in file | {} |
eslintrc.json | no-ternary | Disallow ternary operators | {} |
eslintrc.json | no-trailing-spaces | Disallow trailing whitespace at the end of lines | {} |
eslintrc.json | no-underscore-dangle | Disallow dangling underscores in identifiers | {} |
eslintrc.json | no-unneeded-ternary | Disallow ternary operators when simpler alternatives exist | {} |
eslintrc.json | no-whitespace-before-property | Disallow whitespace before properties | {} |
eslintrc.json | nonblock-statement-body-position | Enforce the location of single-line statements | {} |
eslintrc.json | object-curly-newline | Enforce consistent line breaks inside braces | {} |
eslintrc.json | object-curly-spacing | Enforce consistent spacing inside braces | {} |
eslintrc.json | object-property-newline | Enforce placing object properties on separate lines | {} |
eslintrc.json | one-var | Enforce variables to be declared either together or separately in functions | {} |
eslintrc.json | one-var-declaration-per-line | Require or disallow newlines around var declarations | {} |
eslintrc.json | operator-assignment | Require or disallow assignment operator shorthand where possible | {} |
eslintrc.json | operator-linebreak | Enforce consistent linebreak style for operators | {} |
eslintrc.json | padded-blocks | Require or disallow padding within blocks | {} |
eslintrc.json | padding-line-between-statements | Require or disallow padding lines between statements | {} |
eslintrc.json | quote-props | Require quotes around object literal property names | {} |
eslintrc.json | quotes | Enforce the consistent use of either backticks, double, or single quotes | {} |
eslintrc.json | require-jsdoc | Require JSDoc comments | {} |
eslintrc.json | semi | Require or disallow semicolons instead of ASI | {} |
eslintrc.json | semi-spacing | Enforce consistent spacing before and after semicolons | {} |
eslintrc.json | semi-style | Enforce location of semicolons | {} |
eslintrc.json | sort-keys | Requires object keys to be sorted | {} |
eslintrc.json | sort-vars | Require variables within the same declaration block to be sorted | {} |
eslintrc.json | space-before-blocks | Enforce consistent spacing before blocks | {} |
eslintrc.json | space-before-function-paren | Enforce consistent spacing before function definition opening parenthesis | {} |
eslintrc.json | spaced-comment | Enforce consistent spacing after the // or /* in a comment | {} |
eslintrc.json | space-infix-ops | Require spacing around operators | {} |
eslintrc.json | space-in-parens | Enforce consistent spacing inside parentheses | {} |
eslintrc.json | space-unary-ops | Enforce consistent spacing before or after unary operators | {} |
eslintrc.json | switch-colon-spacing | Enforce spacing around colons of switch statements | {} |
eslintrc.json | template-tag-spacing | Require or disallow spacing between template tags and their literals | {} |
eslintrc.json | unicode-bom | Require or disallow Unicode byte order mark (BOM) | {} |
eslintrc.json | wrap-regex | Require parenthesis around regex literals | {} |
eslintrc.json | arrow-body-style | Require braces around arrow function bodies | {} |
eslintrc.json | arrow-parens | Require parentheses around arrow function arguments | {} |
eslintrc.json | arrow-spacing | Enforce consistent spacing before and after the arrow in arrow functions | {} |
eslintrc.json | constructor-super | Require super() calls in constructors | {} |
eslintrc.json | generator-star-spacing | Enforce consistent spacing around * operators in generator functions | {} |
eslintrc.json | no-class-assign | Disallow reassigning class members | {} |
eslintrc.json | no-confusing-arrow | Disallow arrow functions where they could be confused with comparisons | {} |
eslintrc.json | no-const-assign | Disallow reassigning const variables | {} |
eslintrc.json | no-dupe-class-members | Disallow duplicate class members | {} |
eslintrc.json | no-duplicate-imports | Disallow duplicate module imports | {} |
eslintrc.json | no-new-symbol | Disallow new operators with the Symbol object | {} |
eslintrc.json | no-restricted-imports | Disallow specified modules when loaded by import | {} |
eslintrc.json | no-this-before-super | Disallow this/super before calling super() in constructors | {} |
eslintrc.json | no-useless-computed-key | Disallow unnecessary computed property keys in object literals | {} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.