From ae4431502f1fb26476b9144f47c6ffc1d063c131 Mon Sep 17 00:00:00 2001 From: Andres Suarez Date: Wed, 10 May 2017 18:19:01 -0400 Subject: [PATCH] update disabled style rules --- no-styles.js | 63 ++++++++++++++++------------------------------------ 1 file changed, 19 insertions(+), 44 deletions(-) diff --git a/no-styles.js b/no-styles.js index 2197fa0..dcc11ac 100644 --- a/no-styles.js +++ b/no-styles.js @@ -39,92 +39,67 @@ module.exports = Object.assign({}, plugin, { // http://eslint.org/docs/rules/ const styleRules = { - // "Possible Errors" + // Possible Errors + 'no-extra-parens': null, 'no-extra-semi': null, - // "Stylistic Issues" + // Best Practices + 'dot-location': null, + 'no-floating-decimal': null, + 'no-multi-spaces': null, + 'wrap-iife': null, + + // Stylistic Issues 'array-bracket-spacing': null, 'block-spacing': null, 'brace-style': null, - 'camelcase': null, - 'capitalized-comments': null, 'comma-dangle': null, 'comma-spacing': null, 'comma-style': null, 'computed-property-spacing': null, - 'consistent-this': null, 'eol-last': null, 'func-call-spacing': null, - 'func-name-matching': null, - 'func-names': null, - 'func-style': null, - 'id-blacklist': null, - 'id-length': null, - 'id-match': null, 'indent': null, 'jsx-quotes': null, 'key-spacing': null, 'keyword-spacing': null, - 'line-comment-position': null, 'linebreak-style': null, - 'lines-around-comment': null, - 'lines-around-directive': null, - 'max-depth': null, 'max-len': null, - 'max-lines': null, - 'max-nested-callbacks': null, - 'max-params': null, - 'max-statements': null, 'max-statements-per-line': null, 'multiline-ternary': null, - 'new-cap': null, 'new-parens': null, - 'newline-after-var': null, - 'newline-before-return': null, 'newline-per-chained-call': null, - 'no-array-constructor': null, - 'no-bitwise': null, - 'no-continue': null, - 'no-inline-comments': null, - 'no-lonely-if': null, - 'no-mixed-operators': null, 'no-mixed-spaces-and-tabs': null, - 'no-multi-assign': null, 'no-multiple-empty-lines': null, - 'no-negated-condition': null, - 'no-nested-ternary': null, - 'no-new-object': null, - 'no-plusplus': null, - 'no-restricted-syntax': null, 'no-tabs': null, - 'no-ternary': null, 'no-trailing-spaces': null, - 'no-underscore-dangle': null, - 'no-unneeded-ternary': null, 'no-whitespace-before-property': null, 'nonblock-statement-body-position': null, 'object-curly-newline': null, 'object-curly-spacing': null, 'object-property-newline': null, - 'one-var': null, 'one-var-declaration-per-line': null, - 'operator-assignment': null, 'operator-linebreak': null, 'padded-blocks': null, 'quote-props': null, 'quotes': null, - 'require-jsdoc': null, 'semi': null, 'semi-spacing': null, - 'sort-keys': null, - 'sort-vars': null, 'space-before-blocks': null, 'space-before-function-paren': null, 'space-in-parens': null, 'space-infix-ops': null, 'space-unary-ops': null, - 'spaced-comment': null, 'template-tag-spacing': null, 'unicode-bom': null, - 'wrap-regex': null + 'wrap-regex': null, + + // ECMAScript 6 + 'arrow-parens': null, + 'arrow-spacing': null, + 'generator-star-spacing': null, + 'no-confusing-arrow': null, + 'rest-spread-spacing': null, + 'template-curly-spacing': null, + 'yield-star-spacing': null, };