0.2.1 • Published 1 year ago

@bynary/eslint-config v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@bynary/eslint-config

License npm

A collection of eslint-configs for use at bynary

Installation

npm install eslint @bynary/eslint-config --save-dev

Usage

This package provides multiple configs for different use cases. You can use the configs by adding them in the extends section of your ESLint configuration.

Default config

The default config is for use in most projects and contains JavaScript and TypeScript related rules. It can be used by extending @bynary or @bynary/eslint-config in your ESLint config.

{
    "extends": [
        "@bynary"
    ],
    "rules": {
        // Your overrides
    }
}

or

{
    "extends": [
        "@bynary/eslint-conifg"
    ],
    "rules": {
        // Your overrides
    }
}

Angular config

For Angular projects, there is a tailored config available under the name @bynary/eslint-config/angular

{
    "extends": [
        "@bynary/eslint-config/angular"
    ],
    "rules": {
        // Your overrides
    }
}

Building

Run nx build to build the library.

0.2.1

1 year ago

0.2.0

1 year ago

0.1.0

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago