1.1.2 • Published 5 days ago

@golemio/eslint-config v1.1.2

Weekly downloads
73
License
MIT
Repository
gitlab
Last release
5 days ago

@golemio/eslint-config

License

Golemio ESLint Shareable Config

Installation

yarn add --dev @golemio/eslint-config eslint prettier

Usage

// .eslintrc.js
module.exports = {
    extends: "@golemio/eslint-config",
};

Tests

Clone the repo, yarn, and run yarn test

Release

# Enable Git FLow in the repository
git flow init

# Create a release branch
git checkout development # Make sure you have the latest versions of master and development
git flow release start 1.0.0
git flow release publish 1.0.0

# Update CHANGELOG.md
yarn changelog
git push origin

# Finish up
git flow release finish 1.0.0
git push origin --tags
git push origin --all

# Bump version
yarn version --new-version 1.0.1
git push origin