Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Releases: atomixinteractions/eslint-config

v8.0.0

20 Nov 14:13
Compare
Choose a tag to compare

v7.1.0...v8.0.0

Changes

  • Upgraded from eslint v5 to v6 #4 (Thanks to @n1zee)

v7.1

03 May 21:12
9fdd5f6
Compare
Choose a tag to compare

v7.0.0...v7.1.0

Allow underscore to mark variables as unused

const { omit: _omit, ...rest } = getOptions()
function foo(_unused, used) { return used + 1 }
try {
  just()
  return true
} catch(_error) {
  return false
}

Allow use variables before define

To read code from up to bottom

const a = () => b() + c()
const b = () => 1
const c = () => 2

v7 🥞

02 May 18:03
2d347bd
Compare
Choose a tag to compare

v7 next.1

04 Mar 07:56
9f79f8e
Compare
Choose a tag to compare

v7.0.0-alpha.3...v7.0.0-next.1

  • Upgraded dependencies
  • Added prettier
  • Removed unused rules

v7.0.0-alpha.3

23 Nov 21:30
Compare
Choose a tag to compare
v7.0.0-alpha.3 Pre-release
Pre-release

v6.4.0...v7.0.0-alpha.3

Just upgraded dependencies and removed deprecated options

v6.4 🍄

05 Apr 21:57
v6.4.0
bcabe03
Compare
Choose a tag to compare

Features

  • aeb9102 set peerDep eslint: 4.19.*
  • 53b59d3 upgrade eslint-plugin-import

Javascript

  • 3f16135 add rules about spacing in objects and object patterns
  • bfb58f2 disable vars-on-top because no-vars: error
  • 77dad87 add import/no-cycle: error
  • 5f93d72 add import/no-self-import: error
  • fedb7c1 add import/no-default-export: error
  • 0d9e457 add import/no-absolute-path: error

React

  • e702169 add react/jsx-max-depth
  • d4ce070 add react/forbid-foreign-prop-types: warn
  • 63ed38a add react/no-access-state-in-setstate: warn

Chore

  • 9817435 make all versions equal main version

Test

v6.3 🌿

05 Apr 21:03
3a34a2b
Compare
Choose a tag to compare

Changes

v6.2 🍈

01 Mar 11:54
Compare
Choose a tag to compare

Changes

v6 🍊

10 Jan 21:54
v6.0.0
Compare
Choose a tag to compare

Breaking changes

  • Now configs in monorepo under lerna.

  • Packages renamed:

  • eslint-config-atomix-base -> @atomix/eslint-config

  • eslint-config-atomix-react -> @atomix/eslint-config-react

Changes

  • 27ef866 Fix lerna crosslinks

  • 5488f53 feat(Ignore lock files and add postinstall bootstrap):

  • ddb9c32 refactor(javascript): Rename eslint-config-atomix-base to @atomix/eslint (javascript)

  • a85e11f...3191059 Import commits from eslint-config-atomix-base