eslint-config-scm
Advanced tools
Comparing version 1.0.0 to 1.0.1
259
lib/rules.js
@@ -6,6 +6,6 @@ /** | ||
// Possible Errors | ||
// 'no-await-in-loop': 'off', | ||
// 'no-compare-neg-zero': 'off', | ||
'no-await-in-loop': 'error', | ||
'no-compare-neg-zero': 'error', | ||
// 'no-cond-assign': 'off', | ||
// 'no-console': 'off', | ||
'no-console': 'off', | ||
// 'no-constant-condition': 'off', | ||
@@ -21,3 +21,3 @@ // 'no-control-regex': 'off', | ||
// 'no-extra-boolean-cast': 'off', | ||
// 'no-extra-parens': 'off', | ||
'no-extra-parens': ['error', 'all', { ignoreJSX: 'multi-line' }], | ||
// 'no-extra-semi': 'off', | ||
@@ -29,6 +29,6 @@ // 'no-func-assign': 'off', | ||
// 'no-obj-calls': 'off', | ||
// 'no-prototype-builtins': 'off', | ||
'no-prototype-builtins': 'off', | ||
// 'no-regex-spaces': 'off', | ||
// 'no-sparse-arrays': 'off', | ||
// 'no-template-curly-in-string': 'off', | ||
'no-template-curly-in-string': 'off', | ||
// 'no-unexpected-multiline': 'off', | ||
@@ -39,77 +39,80 @@ // 'no-unreachable': 'off', | ||
// 'use-isnan': 'off', | ||
// 'valid-jsdoc': 'off', | ||
'valid-jsdoc': 'off', | ||
// 'valid-typeof': 'off', | ||
// Best Practices | ||
// 'accessor-pairs': 'off', | ||
// 'array-callback-return': 'off', | ||
// 'block-scoped-var': 'off', | ||
// 'class-methods-use-this': 'off', | ||
// 'complexity': 'off', | ||
// 'consistent-return': 'off', | ||
// 'curly': 'off', | ||
// 'default-case': 'off', | ||
'accessor-pairs': 'off', | ||
'array-callback-return': 'error', | ||
'block-scoped-var': 'error', | ||
'class-methods-use-this': 'off', | ||
'complexity': 'off', | ||
'consistent-return': 'error', | ||
'curly': ['error', 'all'], | ||
'default-case': 'off', | ||
// 'dot-location': 'off', | ||
// 'dot-notation': 'off', | ||
// 'eqeqeq': 'off', | ||
// 'guard-for-in': 'off', | ||
// 'no-alert': 'off', | ||
// 'no-caller': 'off', | ||
'eqeqeq': 'error', | ||
'guard-for-in': 'error', | ||
'no-alert': 'off', | ||
'no-caller': 'error', | ||
// 'no-case-declarations': 'off', | ||
// 'no-div-regex': 'off', | ||
// 'no-else-return': 'off', | ||
// 'no-empty-function': 'off', | ||
'no-div-regex': 'off', | ||
'no-else-return': 'error', | ||
'no-empty-function': ['error', { 'allow': ['arrowFunctions', 'functions', 'methods'] }], | ||
// 'no-empty-pattern': 'off', | ||
// 'no-eq-null': 'off', | ||
// 'no-eval':' 'off', | ||
// 'no-extend-native': 'off', | ||
'no-eq-null': 'off', | ||
'no-eval': 'error', | ||
'no-extend-native': 'error', | ||
// 'no-extra-bind': 'off', | ||
// 'no-extra-label': 'off', | ||
'no-extra-label': 'off', | ||
// 'no-fallthrough': 'off', | ||
// 'no-floating-decimal': 'off', | ||
// 'no-global-assign': 'off', | ||
'no-floating-decimal': 'error', | ||
'no-global-assign': 'warn', | ||
// 'no-implicit-coercion': 'off', | ||
// 'no-implicit-globals': 'off', | ||
// 'no-implied-eval': 'off', | ||
'no-implied-eval': 'error', | ||
// 'no-invalid-this': 'off', | ||
// 'no-iterator': 'off', | ||
// 'no-labels': 'off', | ||
// 'no-lone-blocks': 'off', | ||
// 'no-loop-func': 'off', | ||
// 'no-magic-numbers': 'off', | ||
// 'no-multi-spaces': 'off', | ||
// 'no-multi-str': 'off', | ||
// 'no-new': 'off', | ||
// 'no-new-func': 'off', | ||
// 'no-new-wrappers': 'off', | ||
'no-iterator': 'error', | ||
'no-labels': 'error', | ||
'no-lone-blocks': 'error', | ||
'no-loop-func': 'off', | ||
//'no-magic-numbers': 'off', | ||
'no-multi-spaces': 'error', | ||
'no-multi-str': 'error', | ||
'no-new': 'off', | ||
'no-new-func': 'error', | ||
'no-new-wrappers': 'error', | ||
// 'no-octal': 'off', | ||
// 'no-octal-escape': 'off', | ||
// 'no-param-reassign': 'off', | ||
// 'no-proto': 'off', | ||
'no-octal-escape': 'error', | ||
'no-param-reassign': 'error', | ||
'no-proto': 'error', | ||
// 'no-redeclare': 'off', | ||
// 'no-restricted-properties': 'off', | ||
// 'no-return-assign': 'off', | ||
// 'no-return-await': 'off', | ||
// 'no-script-url': 'off', | ||
'no-restricted-properties': 'error', | ||
'no-return-assign': 'off', | ||
// 'no-return-await': 'error', | ||
'no-script-url': 'error', | ||
// 'no-self-assign': 'off', | ||
// 'no-self-assign': 'off', | ||
// 'no-sequences': 'off', | ||
// 'no-throw-literal': 'off', | ||
'no-self-compare': 'error', | ||
'no-sequences': 'error', | ||
'no-throw-literal': 'error', | ||
// 'no-unmodified-loop-condition': 'off', | ||
// 'no-unused-expressions': 'off', | ||
'no-unused-expressions': 'error', | ||
// 'no-unused-labels': 'off', | ||
// 'no-useless-call': 'off', | ||
// 'no-useless-concat': 'off', | ||
// 'no-useless-escape': 'off', | ||
// 'no-useless-return': 'off', | ||
// 'no-void': 'off', | ||
// 'no-warning-comments': 'off', | ||
// 'no-with': 'off', | ||
// 'prefer-promise-reject-errors': 'off', | ||
// 'radix': 'off', | ||
// 'require-await': 'off', | ||
// 'vars-on-top': 'off', | ||
// 'wrap-iife': 'off', | ||
// 'yoda': 'off', | ||
'no-useless-concat': 'error', | ||
'no-useless-escape': 'error', | ||
'no-useless-return': 'error', | ||
//'no-void': 'off', | ||
'no-warning-comments': 'off', | ||
'no-with': 'error', | ||
'prefer-promise-reject-errors': ['error', { allowEmptyReject: true }], | ||
'radix': 'error', | ||
'require-await': 'warn', | ||
'vars-on-top': 'error', | ||
'wrap-iife': ['error', 'outside'], | ||
'yoda': 'error', | ||
// strict | ||
// 'strict': 'off', | ||
// Variables | ||
@@ -119,16 +122,16 @@ // 'init-declarations': 'off', | ||
// 'no-delete-var': 'off', | ||
// 'no-label-var': 'off', | ||
// 'no-restricted-globals': 'off', | ||
'no-label-var': 'error', | ||
'no-restricted-globals': 'error', | ||
// 'no-shadow': 'off', | ||
// 'no-shadow-restricted-names': 'off', | ||
// 'no-undef': 'off', | ||
// 'no-undef-init': 'off', | ||
'no-undef-init': 'error', | ||
// 'no-undefined': 'off', | ||
// 'no-unused-vars': 'off', | ||
// 'no-use-before-define': 'off', | ||
'no-use-before-define': 'error', | ||
// Node.js and CommonJS | ||
// 'callback-return': 'off', | ||
// 'global-require': 'off', | ||
// 'handle-callback-err': 'off', | ||
'global-require': 'error', | ||
'handle-callback-err': ['error', '^.*(e|E)rr(or)?$'], | ||
// 'no-mixed-requires': 'off', | ||
@@ -143,15 +146,15 @@ // 'no-new-require': 'off', | ||
// Stylistic Issues | ||
// 'array-bracket-spacing': 'off', | ||
// 'block-spacing': 'off', | ||
// 'brace-style': 'off', | ||
// 'camelcase': 'off', | ||
'array-bracket-spacing': 'error', | ||
'block-spacing': ['error', 'never'], | ||
'brace-style': 'error', | ||
'camelcase': 'error', | ||
// 'capitalized-comments': 'off', | ||
// 'comma-dangle': 'off', | ||
// 'comma-spacing': 'off', | ||
// 'comma-style': 'off', | ||
// 'computed-property-spacing': 'off', | ||
'comma-dangle': ['error', 'never'], | ||
'comma-spacing': 'error', | ||
//'comma-style': 'off', | ||
'computed-property-spacing': 'error', | ||
// 'consistent-this': 'off', | ||
// 'eol-last': 'off', | ||
// 'func-call-spacing': 'off', | ||
// 'func-name-matching': 'off', | ||
'eol-last': 'error', | ||
'func-call-spacing': 'error', | ||
'func-name-matching': 'error', | ||
// 'func-names': 'off', | ||
@@ -162,9 +165,9 @@ // 'func-style': 'off', | ||
// 'id-match': 'off', | ||
// 'indent': 'off', | ||
'indent': ["error", 2], | ||
// 'jsx-quotes': 'off', | ||
// 'key-spacing': 'off', | ||
// 'keyword-spacing': 'off', | ||
// 'line-comment-position': 'off', | ||
'key-spacing': 'error', | ||
'keyword-spacing': 'error', | ||
'line-comment-position': 'error', | ||
// 'linebreak-style': 'off', | ||
// 'lines-around-comment': 'off', | ||
'lines-around-comment': ['error', { allowBlockStart: true }], | ||
// 'lines-around-directive': 'off', | ||
@@ -179,18 +182,18 @@ // 'max-depth': 'off', | ||
// 'multiline-ternary': 'off', | ||
// 'new-cap': 'off', | ||
// 'new-parens': 'off', | ||
'new-cap': 'error', | ||
'new-parens': 'error', | ||
// 'newline-after-var': 'off', | ||
// 'newline-before-return': 'off', | ||
// 'newline-per-chained-call': 'off', | ||
// 'no-array-constructor': 'off', | ||
'no-array-constructor': 'error', | ||
// 'no-bitwise': 'off', | ||
// 'no-continue': 'off', | ||
// 'no-inline-comments': 'off', | ||
'no-inline-comments': 'error', | ||
// 'no-lonely-if': 'off', | ||
// 'no-mixed-operators': 'off', | ||
// 'no-mixed-spaces-and-tabs': 'off', | ||
// 'no-multi-assign': 'off', | ||
'no-multi-assign': 'error', | ||
// 'no-multiple-empty-lines': 'off', | ||
// 'no-negated-condition': 'off', | ||
// 'no-nested-ternary': 'off', | ||
'no-nested-ternary': 'error', | ||
// 'no-new-object': 'off', | ||
@@ -201,7 +204,7 @@ // 'no-plusplus': 'off', | ||
// 'no-ternary': 'off', | ||
// 'no-trailing-spaces': 'off', | ||
// 'no-underscore-dangle': 'off', | ||
// 'no-unneeded-ternary': 'off', | ||
// 'no-whitespace-before-property': 'off', | ||
// 'nonblock-statement-body-position': 'off', | ||
'no-trailing-spaces': 'error', | ||
'no-underscore-dangle': ['error', { allowAfterThis: true }], | ||
'no-unneeded-ternary': 'error', | ||
'no-whitespace-before-property': 'error', | ||
'nonblock-statement-body-position': 'error', | ||
// 'object-curly-newline': 'off', | ||
@@ -214,52 +217,52 @@ // 'object-curly-spacing': 'off', | ||
// 'operator-linebreak': 'off', | ||
// 'padded-blocks': 'off', | ||
'padded-blocks': ['error', 'never'], | ||
// 'quote-props': 'off', | ||
// 'quotes': 'off', | ||
'quotes': ['error', 'single', { avoidEscape: true }], | ||
// 'require-jsdoc': 'off', | ||
// 'semi': 'off', | ||
// 'semi-spacing': 'off', | ||
'semi': ['error', 'always'], | ||
'semi-spacing': 'error', | ||
// 'sort-keys': 'off', | ||
// 'sort-vars': 'off', | ||
// 'space-before-blocks': 'off', | ||
// 'space-before-function-paren': 'off', | ||
// 'space-in-parens': 'off', | ||
// 'space-infix-ops': 'off', | ||
// 'space-unary-ops': 'off', | ||
// 'spaced-comment': 'off', | ||
// 'template-tag-spacing': 'off', | ||
// 'unicode-bom': 'off', | ||
// 'wrap-regex': 'off', | ||
'space-before-blocks': 'error', | ||
'space-before-function-paren': ['error', { anonymous: 'always', named: 'never' }], | ||
'space-in-parens': 'error', | ||
'space-infix-ops': 'error', | ||
'space-unary-ops': 'error', | ||
'spaced-comment': 'error', | ||
'template-tag-spacing': ['error', 'always'], | ||
'unicode-bom': 'error', | ||
'wrap-regex': 'off', | ||
// ECMAScript 6 | ||
// 'arrow-body-style': 'off', | ||
// 'rrow-body-style': 'off', | ||
// 'arrow-spacing': 'off', | ||
'arrow-body-style': 'error', | ||
'arrow-parens': ['error', 'as-needed'], | ||
'arrow-spacing': 'error', | ||
// 'constructor-super': 'off', | ||
// 'generator-star-spacing': 'off', | ||
'generator-star-spacing': 'error', | ||
// 'no-class-assign': 'off', | ||
// 'no-confusing-arrow': 'off', | ||
'no-confusing-arrow': 'error', | ||
// 'no-const-assign': 'off', | ||
// 'no-dupe-class-members': 'off', | ||
// 'no-duplicate-imports': 'off', | ||
'no-duplicate-imports': 'error', | ||
// 'no-new-symbol': 'off', | ||
// 'no-restricted-imports': 'off', | ||
// 'no-this-before-super': 'off', | ||
// 'no-useless-computed-key': 'off', | ||
// 'no-useless-constructor': 'off', | ||
'no-useless-computed-key': 'error', | ||
'no-useless-constructor': 'error', | ||
// 'no-useless-rename': 'off', | ||
// 'no-var': 'off', | ||
// 'object-shorthand': 'off', | ||
// 'prefer-arrow-callback': 'off', | ||
// 'prefer-const': 'off', | ||
// 'prefer-destructuring': 'off', | ||
// 'prefer-numeric-literals': 'off', | ||
// 'prefer-rest-params': 'off', | ||
// 'prefer-spread': 'off', | ||
// 'prefer-template': 'off', | ||
'no-var': 'error', | ||
'object-shorthand': ['error', 'always', { avoidQuotes: true }], | ||
'prefer-arrow-callback': 'error', | ||
'prefer-const': ['error', { ignoreReadBeforeAssign: true }], | ||
'prefer-destructuring': 'error', | ||
'prefer-numeric-literals': 'error', | ||
'prefer-rest-params': 'error', | ||
'prefer-spread': 'error', | ||
'prefer-template': 'error', | ||
// 'require-yield': 'off', | ||
// 'rest-spread-spacing': 'off', | ||
'rest-spread-spacing': 'error', | ||
// 'sort-imports': 'off', | ||
// 'symbol-description': 'off', | ||
// 'template-curly-spacing': 'off', | ||
// 'yield-star-spacing': 'off', | ||
'template-curly-spacing': 'error', | ||
'yield-star-spacing': ['error', 'before'], | ||
}; |
{ | ||
"name": "eslint-config-scm", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Common code style for scm", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13683
388