This repository has been archived by the owner on Jan 11, 2018. It is now read-only.
Releases: atomixinteractions/eslint-config-base
Releases · atomixinteractions/eslint-config-base
v4.4
Changes
- 159cf39 Change double quotes to single, Add trailing comma in config
- 9ddd8b9 Add rules
object-property-newline
andobject-curly-newline
v4.3.2
v4.3.1
v4.3
Changes
- 04dcf16 Add rule
no-magic-numbers
v4.2
v4.1.0
Changes
- Updated dependencies: config-airbnb-base, eslint
v4.0 🏵
Changes
- Ignore function comma dangle
- Add unicorn plugin with rules 9ab3daf#diff-e4403a877d80de653400d88d85e4801aR58
v3.1.0
Changes
- Added imports groups. Require empty line between import groups.
Groups order:
- node "builtin"s, "external" modules
- "internal" imports, modules from a "parent" directory
- "sibling" modules from the same or a sibling's directory, "index" of the current directory
import fs from 'fs'
import path from 'path'
import _ from 'lodash'
import chalk from 'chalk'
import foo from 'src/foo'
import foo from '../foo'
import qux from '../../foo/qux'
import bar from './bar'
import baz from './bar/baz'
import main from './'
- Require 2 newlines after imports
v3.0.0 💥
Updates
- eslint to v4
- eslint-config-airbnb-base to 11.3.1
- eslint-plugin-import to 2.7
v2.0.0 🍀
Changes
- Disabled
no-plusplus