Skip to content
This repository has been archived by the owner on Jul 4, 2022. It is now read-only.

ESLint Configuration for all Lyne Repos

Notifications You must be signed in to change notification settings

lyne-design-system/lyne-helper-eslint-config

Repository files navigation

Build Status semantic-release GitHub tag (latest SemVer)

Lyne Helper ESLint Config

Base ESLint Configuration for all Lyne Repos.

Installation

Install the Config with the following command:

npm install --save-dev lyne-helper-eslint-config

Usage

Require the base configuration:

const baseConfig = require('lyne-helper-eslint-config');

Then expand/change it to your liking. e.g.:

baseConfig.globals = {
  module: 'readonly',
  require: 'readonly'
};

Development

Conventional Commits

Please follow the Conventional Commits specification to make sure we can automatically determine the next release version if necessary.

Deployment

The package is automatically published to npm after successfull build via TravisCI