1.3.3 • Published 5 months ago

@innovixx/eslint-config v1.3.3

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

JavaScript Style Guide

Highlights

Quick Start

Installation

$ npm i --save-dev @innovixx/eslint-config
$ npm info @innovixx/eslint-config peerDependencies
$ npm i --save-dev <dependency>@<version> # for each dependency in the above output
$ # or
$ yarn add --dev @innovixx/eslint-config
$ yarn info @innovixx/eslint-config peerDependencies
$ yarn add --dev <dependency>@<version> # for each dependency in the above output

Usage

There are a number of configurations for consumption, all of which are packaged together as the default export or they can be selectively extended, which prevents the path names from being written shorthand.

{
  "extends": "@innovixx"
  // or selectively extend any config(s)
  // "extends": [
  //   "@innovixx/eslint-config/configs/base",
  //   "@innovixx/eslint-config/configs/jest",
  //   "@innovixx/eslint-config/configs/react",
  // ]
}

If using Webpack, install and configure eslint-loader to have loaded files automatically linted.

{
  test: /\.js$/,
  exclude: /node_modules/,
  loader: 'eslint-loader',
  options: {
    fix: true,
    emitWarning: true,
  },
}

For working examples, see the demo app.

Demo

$ git clone git@github.com:Innovixx-Development/eslint-config.git
$ yarn
$ yarn demo
$ open http://localhost:3000

License

MIT Copyright (c) Innovixx, Ltd

1.3.3

5 months ago

1.1.1

6 months ago

1.2.6

6 months ago

1.2.5

6 months ago

1.2.4

6 months ago

1.3.2

6 months ago

1.2.3

6 months ago

1.3.1

6 months ago

1.2.2

6 months ago

1.3.0

6 months ago

1.1.0

11 months ago

1.0.11

1 year ago

1.0.10

1 year ago

1.0.8

1 year ago

1.0.6

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.0

2 years ago