declare const rules: { readonly '@stylistic/array-bracket-newline': "error"; readonly '@stylistic/array-bracket-spacing': ["error", "never"]; readonly '@stylistic/array-element-newline': ["error", { readonly minItems: 3; readonly multiline: true; }]; readonly '@stylistic/arrow-parens': ["error", "as-needed"]; readonly '@stylistic/arrow-spacing': ["error", { readonly after: true; readonly before: true; }]; readonly '@stylistic/block-spacing': ["error", "always"]; readonly '@stylistic/brace-style': ["error", "1tbs", { readonly allowSingleLine: false; }]; readonly '@stylistic/comma-dangle': ["error", "never"]; readonly '@stylistic/comma-spacing': ["error", { readonly after: true; readonly before: false; }]; readonly '@stylistic/comma-style': ["error", "last"]; readonly '@stylistic/computed-property-spacing': ["error", "never"]; readonly '@stylistic/curly-newline': ["error", "always"]; readonly '@stylistic/dot-location': ["error", "property"]; readonly '@stylistic/eol-last': "error"; readonly '@stylistic/exp-jsx-props-style': "off"; readonly '@stylistic/exp-list-style': "off"; readonly '@stylistic/function-call-argument-newline': ["error", "consistent"]; readonly '@stylistic/function-call-spacing': ["error", "never"]; readonly '@stylistic/function-paren-newline': ["error", "multiline"]; readonly '@stylistic/generator-star-spacing': ["error", "after"]; readonly '@stylistic/implicit-arrow-linebreak': ["error", "beside"]; readonly '@stylistic/indent': ["error", 2, { readonly MemberExpression: 1; readonly SwitchCase: 1; }]; readonly '@stylistic/indent-binary-ops': ["error", 2]; readonly '@stylistic/jsx-child-element-spacing': "error"; readonly '@stylistic/jsx-closing-bracket-location': "error"; readonly '@stylistic/jsx-closing-tag-location': "error"; readonly '@stylistic/jsx-curly-brace-presence': ["error", { readonly children: "ignore"; readonly props: "never"; }]; readonly '@stylistic/jsx-curly-newline': ["error", "never"]; readonly '@stylistic/jsx-curly-spacing': "error"; readonly '@stylistic/jsx-equals-spacing': "error"; readonly '@stylistic/jsx-first-prop-new-line': "error"; readonly '@stylistic/jsx-function-call-newline': "error"; readonly '@stylistic/jsx-indent-props': ["error", 2]; readonly '@stylistic/jsx-max-props-per-line': "error"; readonly '@stylistic/jsx-newline': "off"; readonly '@stylistic/jsx-one-expression-per-line': "error"; readonly '@stylistic/jsx-pascal-case': "error"; readonly '@stylistic/jsx-quotes': ["error", "prefer-double"]; readonly '@stylistic/jsx-self-closing-comp': "error"; readonly '@stylistic/jsx-tag-spacing': ["error", { readonly beforeClosing: "never"; }]; readonly '@stylistic/jsx-wrap-multilines': "error"; readonly '@stylistic/key-spacing': ["error", { readonly afterColon: true; readonly beforeColon: false; }]; readonly '@stylistic/keyword-spacing': ["error", { readonly after: true; readonly before: true; }]; readonly '@stylistic/line-comment-position': "error"; readonly '@stylistic/linebreak-style': "error"; readonly '@stylistic/lines-around-comment': "off"; readonly '@stylistic/lines-between-class-members': "error"; readonly '@stylistic/max-len': "off"; readonly '@stylistic/max-statements-per-line': "error"; readonly '@stylistic/member-delimiter-style': "error"; readonly '@stylistic/multiline-comment-style': "error"; readonly '@stylistic/multiline-ternary': ["error", "always-multiline"]; readonly '@stylistic/new-parens': "error"; readonly '@stylistic/newline-per-chained-call': "off"; readonly '@stylistic/no-confusing-arrow': ["error", { readonly allowParens: false; }]; readonly '@stylistic/no-extra-parens': ["error", "all", { readonly ignoreJSX: "multi-line"; readonly nestedBinaryExpressions: false; }]; readonly '@stylistic/no-extra-semi': "error"; readonly '@stylistic/no-floating-decimal': "error"; readonly '@stylistic/no-mixed-operators': "error"; readonly '@stylistic/no-mixed-spaces-and-tabs': "error"; readonly '@stylistic/no-multi-spaces': "error"; readonly '@stylistic/no-multiple-empty-lines': ["error", { readonly max: 2; readonly maxBOF: 0; readonly maxEOF: 1; }]; readonly '@stylistic/no-tabs': "off"; readonly '@stylistic/no-trailing-spaces': "error"; readonly '@stylistic/no-whitespace-before-property': "error"; readonly '@stylistic/nonblock-statement-body-position': "error"; readonly '@stylistic/object-curly-newline': "error"; readonly '@stylistic/object-curly-spacing': ["error", "always"]; readonly '@stylistic/object-property-newline': "error"; readonly '@stylistic/one-var-declaration-per-line': "off"; readonly '@stylistic/operator-linebreak': ["error", "before"]; readonly '@stylistic/padded-blocks': ["error", "never"]; readonly '@stylistic/padding-line-between-statements': "error"; readonly '@stylistic/quote-props': ["error", "as-needed"]; readonly '@stylistic/quotes': ["error", "single", { readonly avoidEscape: true; }]; readonly '@stylistic/rest-spread-spacing': ["error", "never"]; readonly '@stylistic/semi': ["error", "always"]; readonly '@stylistic/semi-spacing': ["error", { readonly after: true; readonly before: false; }]; readonly '@stylistic/semi-style': ["error", "last"]; readonly '@stylistic/space-before-blocks': "error"; readonly '@stylistic/space-before-function-paren': ["error", "always"]; readonly '@stylistic/space-in-parens': ["error", "never"]; readonly '@stylistic/space-infix-ops': "error"; readonly '@stylistic/space-unary-ops': "error"; readonly '@stylistic/spaced-comment': ["error", "always", { readonly block: { readonly balanced: true; }; }]; readonly '@stylistic/switch-colon-spacing': "error"; readonly '@stylistic/template-curly-spacing': ["error", "never"]; readonly '@stylistic/template-tag-spacing': ["error", "never"]; readonly '@stylistic/type-annotation-spacing': "error"; readonly '@stylistic/type-generic-spacing': "error"; readonly '@stylistic/type-named-tuple-spacing': "error"; readonly '@stylistic/wrap-iife': ["error", "inside"]; readonly '@stylistic/wrap-regex': "off"; readonly '@stylistic/yield-star-spacing': ["error", { readonly after: true; readonly before: false; }]; }; export default rules;