UNPKG

@croct/eslint-plugin

Version:

ESLint rules and presets applied to all Croct JavaScript projects.

18 lines (17 loc) 1 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.rules = void 0; const argument_spacing_1 = require("./argument-spacing"); const jsx_attribute_spacing_1 = require("./jsx-attribute-spacing"); const complex_expression_spacing_1 = require("./complex-expression-spacing"); const newline_per_chained_call_1 = require("./newline-per-chained-call"); const min_chained_call_depth_1 = require("./min-chained-call-depth"); const parameter_destructuring_1 = require("./parameter-destructuring"); exports.rules = { 'argument-spacing': argument_spacing_1.argumentSpacing, 'jsx-attribute-spacing': jsx_attribute_spacing_1.jsxAttributeSpacing, 'complex-expression-spacing': complex_expression_spacing_1.complexExpressionSpacing, 'newline-per-chained-call': newline_per_chained_call_1.newlinePerChainedCall, 'min-chained-call-depth': min_chained_call_depth_1.minChainedCallDepth, 'parameter-destructuring': parameter_destructuring_1.parameterDestructuring, };