Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jsxtools/eslint-config-dev
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 019c6093333023db8906cd6b888a3cd3bf0909f1
Choose a base ref
...
head repository: jsxtools/eslint-config-dev
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 65bae727b0f6c3c7261e3db40435925592b8320e
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Jun 22, 2022

  1. 3.1.0

    Loosen certain restrictions
    jonathantneal committed Jun 22, 2022
    Copy the full SHA
    65bae72 View commit details
Showing with 7 additions and 7 deletions.
  1. +6 −6 .eslintrc
  2. +1 −1 package.json
12 changes: 6 additions & 6 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -70,15 +70,15 @@
"keyword-spacing": ["error", { "before": true, "after": true }],
"lines-between-class-members": ["error", "always", { "exceptAfterSingleLine": true }],
"multiline-ternary": ["error", "always-multiline"],
"new-cap": ["error", { "newIsCap": true, "capIsNew": false, "properties": true }],
"new-cap": "off",
"new-parens": "error",
"no-array-constructor": "error",
"no-async-promise-executor": "error",
"no-caller": "error",
"no-case-declarations": "error",
"no-class-assign": "error",
"no-compare-neg-zero": "error",
"no-cond-assign": "error",
"no-cond-assign": "off",
"no-const-assign": "error",
"no-constant-condition": ["error", { "checkLoops": false }],
"no-control-regex": "error",
@@ -98,7 +98,7 @@
"no-extra-bind": "error",
"no-extra-boolean-cast": "error",
"no-extra-parens": ["error", "functions"],
"no-fallthrough": "error",
"no-fallthrough": "off",
"no-floating-decimal": "error",
"no-func-assign": "error",
"no-global-assign": "error",
@@ -136,7 +136,7 @@
"no-proto": "error",
"no-redeclare": ["error", { "builtinGlobals": false }],
"no-regex-spaces": "error",
"no-return-assign": ["error", "except-parens"],
"no-return-assign": "off",
"no-self-assign": ["error", { "props": true }],
"no-self-compare": "error",
"no-sequences": "error",
@@ -146,7 +146,7 @@
"no-this-before-super": "error",
"no-throw-literal": "error",
"no-trailing-spaces": "error",
"no-undef": "error",
"no-undef": "off",
"no-undef-init": "error",
"no-unexpected-multiline": "error",
"no-unmodified-loop-condition": "error",
@@ -186,7 +186,7 @@
"prefer-promise-reject-errors": "error",
"prefer-regex-literals": ["error", { "disallowRedundantWrapping": true }],
"quote-props": ["off", "consistent"],
"quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": false }],
"quotes": ["error", "single", { "avoidEscape": true, "allowTemplateLiterals": true }],
"rest-spread-spacing": ["error", "never"],
"semi": ["off", "never"],
"semi-spacing": ["error", { "before": false, "after": true }],
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-dev",
"version": "3.0.0",
"version": "3.1.0",
"description": "A shareable configuration package for eslint",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",