eslint-plugin-cubyn

2.6.2 • Public • Published

eslint-plugin-cubyn

Enforce Cubyn standard style

Contains:

Why a linter?

  • Apply community best practices
  • Avoid errors in code
  • Improve code quality
  • Gives immediate feedback about a piece of code
  • Make Pull Requests follow a code standard

Why a rule breaks my code?

ESLint rules explanations.

Search on web why this rule exists.

Can I disable a rule?

No. Modifies the code to match the rule. (There are exceptions)

Installation

eslint, eslint-config-airbnb-base, eslint-plugin-jest and eslint-plugin-import packages are peer dependencies of Cubyn linter, there is no need to add them.

Since there were bugs (1 and 2) in Yarn dependencies resolutions, the following packages must be installed as dev dependencies:

yarn add -D \
  eslint \
  eslint-config-airbnb-base \
  eslint-plugin-import \
  eslint-plugin-cubyn \
  eslint-plugin-jest \
  eslint-plugin-unicorn

Project's devDependencies must contains:

"devDependencies": {
  "eslint": "^6.6.0",
  "eslint-config-airbnb-base": "^14.0.0",
  "eslint-plugin-cubyn": "^2.3.1",
  "eslint-plugin-import": "^2.18.2",
  "eslint-plugin-jest": "^23.0.3",
  "eslint-plugin-unicorn": "^12.1.0",
  "jest": "^23.5.0"
}

Usage

Copy the following configuration in the root .eslintrc.js file:

module.exports = {
  extends: [
    'plugin:cubyn/recommended',
    'plugin:jest/recommended',
  ],
  plugins: [
    'jest',
  ],
  env: {
    'jest/globals': true,
  },
}

Release

Test your changes

Linking your project to use the local version of the package.

$ cd eslint-plugin-cubyn
$ yarn link
$ cd ../service-scub # or other package using 'eslint-plugin-cubyn'
$ yarn link eslint-plugin-cubyn
$ yarn install

# Test your changes
$ yarn lint

# Unlink
$ cd eslint-plugin-cubyn
$ yarn unlink
$ cd ../service-scub # or other package using 'eslint-plugin-cubyn'
$ yarn unlink eslint-plugin-cubyn
$ yarn install --check-files

Run project tests

$ cd eslint-plugin-cubyn
$ yarn test

Git flow release

Bump the package version and release your changes with git flow.

Npm publish

$ cd eslint-plugin-cubyn
$ npm publish

Bump services to the new version

Readme

Keywords

none

Package Sidebar

Install

npm i eslint-plugin-cubyn

Weekly Downloads

29

Version

2.6.2

License

ISC

Unpacked Size

21.8 kB

Total Files

15

Last publish

Collaborators

  • cubyn-devops
  • cubyn
  • fpierre
  • maxence_douet_cubyn
  • cubynjchampseix