Skip to content

๐Ÿ‘ฎโ€โ™‚๏ธ Enforce code style

Notifications You must be signed in to change notification settings

significantbit/eslint-config-sigbit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

27 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Sigbit ESLint config

๐Ÿ‘ฎโ€โ™‚๏ธ Enforce code style

Usage

Add eslint and this config to your project:

$ yarn add eslint "significantbit/eslint-config-sigbit#<release>" -D

Use default config:

// .eslintrc.js
module.exports = {
  root: true,
  extends: [
    'sigbit'
  ]
}

Use specific config:

// .eslintrc.js
module.exports = {
  root: true,
  extends: [
    'sigbit/nuxt'
  ]
}