UNPKG

@gravitywelluk/eslint-plugin

Version:

Gravitywell defined ESLint rule sets as an ESLint plugin

26 lines (25 loc) 665 B
"use strict"; module.exports = [ { files: ["*.json"], rules: { "object-curly-newline": ["off"], "quote-props": ["off"], "semi": ["off"], "array-bracket-newline": ["error", { minItems: 1 }], "array-element-newline": [ "error", { ArrayExpression: { multiline: true, minItems: 1 }, ArrayPattern: { multiline: true, minItems: 1 } } ] } } ];