relax_vendored.js (1531B)
1 'use strict'; 2 3 module.exports = { 4 rules: { 5 'semi': 'off', 6 'no-console': 'off', 7 'block-scoped-var': 'off', 8 'consistent-return': 'off', 9 'curly': 'off', 10 'no-empty-function': 'off', 11 'no-implicit-coercion': 'off', 12 'no-magic-numbers': 'off', 13 'no-multi-spaces': 'off', 14 'no-param-reassign': 'off', 15 'no-throw-literal': 'off', 16 'no-warning-comments': 'off', 17 'require-unicode-regexp': 'off', 18 'strict': 'off', 19 'no-shadow': 'off', 20 'no-use-before-define': 'off', 21 'camelcase': 'off', 22 'comma-dangle': 'off', 23 'comma-style': 'off', 24 'consistent-this': 'off', 25 'func-style': 'off', 26 'max-len': 'off', 27 'no-tabs': 'off', 28 'quotes': 'off', 29 'indent': 'off', 30 'keyword-spacing': 'off', 31 'linebreak-style': 'off', 32 'no-multi-assign': 'off', 33 'no-multiple-empty-lines': 'off', 34 'no-plusplus': 'off', 35 'no-var': 'off', 36 'object-curly-spacing': 'off', 37 'one-var': 'off', 38 'operator-linebreak': 'off', 39 'padded-blocks': 'off', 40 'semi-spacing': 'off', 41 'semi-style': 'off', 42 'space-before-blocks': 'off', 43 'space-before-function-paren': 'off', 44 'space-in-parens': 'off', 45 'space-infix-ops': 'off', 46 'space-unary-ops': 'off', 47 'spaced-comment': 'off', 48 'no-invalid-this': 'off', 49 'function-paren-newline': 'off', 50 }, 51 };