Skip to content

Releases: the-guild-org/shared-config

June 05, 2023

05 Jun 17:29
76376c6
Compare
Choose a tag to compare

@theguild/eslint-config@0.10.0

Minor Changes

@theguild/prettier-config@1.2.0

Minor Changes

Patch Changes

@theguild/tailwind-config@0.2.2

Patch Changes

March 30, 2023

30 Mar 14:43
8da04ab
Compare
Choose a tag to compare

@theguild/eslint-config@0.9.0

Minor Changes

  • #205
    ebd2920
    Thanks @B2o5T! - new rules

    {
      "unicorn/no-array-for-each": "error",
      "unicorn/prefer-string-trim-start-end": "error",
      "no-self-compare": "error",
      "eqeqeq": [
        "error",
        "always",
        {
          "null": "ignore"
        }
      ],
      "@typescript-eslint/consistent-type-assertions": "error"
    }

Patch Changes

March 16, 2023

16 Mar 06:06
81bc0f2
Compare
Choose a tag to compare

@theguild/eslint-config@0.8.1

Patch Changes

@theguild/prettier-config@1.1.3

Patch Changes

February 11, 2023

11 Feb 08:23
3cfffb8
Compare
Choose a tag to compare

@theguild/prettier-config@1.1.2

Patch Changes

January 30, 2023

30 Jan 17:41
9ff6b20
Compare
Choose a tag to compare

@theguild/eslint-config@0.8.0

Minor Changes

  • #157
    3f7437f
    Thanks @B2o5T! - new rules:

    • yoda

    • unicorn/prefer-export-from

    • promise/no-multiple-resolved

    • unicorn/prefer-logical-operator-over-ternary

    • @typescript-eslint/no-unused-expressions

    • unicorn/no-negated-condition

    react:

    fix import/extensions

    • 'react/prop-types': 'off'
    • 'react/jsx-boolean-value': 'error'
    • 'react/hook-use-state': 'error'
    • 'react/iframe-missing-sandbox': 'error'

    forbid:

    • process.browser

    • restrict isNaN in favour of Number.isNaN

Patch Changes

@theguild/prettier-config@1.1.1

Patch Changes

January 22, 2023

22 Jan 19:43
963f42a
Compare
Choose a tag to compare

@theguild/eslint-config@0.7.0

Minor Changes

Patch Changes

@theguild/prettier-config@1.1.0

Minor Changes

Patch Changes

January 09, 2023

09 Jan 17:00
53cc553
Compare
Choose a tag to compare

@theguild/eslint-config@0.6.0

Minor Changes

  • #151
    d5152a8
    Thanks @B2o5T! - forbid useMemo(…, []) for react and Boolean(…)
    for all files

January 09, 2023

09 Jan 12:21
d0fcdd4
Compare
Choose a tag to compare

@theguild/eslint-config@0.5.1

Patch Changes

  • #149
    10a328a
    Thanks @B2o5T! - add boolean: false for no-implicit-coercion
    because in TypeScript !! is preferable

January 07, 2023

07 Jan 19:33
b85d396
Compare
Choose a tag to compare

@theguild/eslint-config@0.5.0

Minor Changes

  • #146
    f829c8d
    Thanks @B2o5T! - add new rules prefer-object-has-own,
    logical-assignment-operators and @typescript-eslint/prefer-optional-chain

January 06, 2023

06 Jan 01:44
c79f1b2
Compare
Choose a tag to compare

@theguild/eslint-config@0.4.2

Patch Changes

  • #144
    2e7099a
    Thanks @B2o5T! - add varsIgnorePattern: '^_' for
    @typescript-eslint/no-unused-vars forbid lodash/isString.js, lodash/isArray.js,
    lodash/flatten.js, lodash/compact.js, lodash/identity.js