1.5.0 • Published 10 months ago

@t99/eslint-config v1.5.0

Weekly downloads
-
License
GPL-3.0-or-later
Repository
github
Last release
10 months ago

@t99/eslint-config

A repository for keeping track of all of my ESLint configuration files.

Find @t99/eslint-config on NPM.

Table of Contents

Installation

Install from NPM with

$ npm install --save-dev @t99/eslint-config

Then, add it to your local ESLint config:

For JS/CJS Configs (.eslintrc.js/.eslintrc.cjs):
module.exports = {
    extends: [
        "@t99"
    ]
}
For JSON Configs (.eslintrc.json):
{
    "extends": [
        "@t99"
    ]
}
For YAML/YML Configs (.eslintrc.yaml/.eslintrc.yml):
extends:
    @t99

TypeScript Installation

Additionally, for TypeScript projects, you will need to configure the path to your project's tsconfig.json. Extending this package will take care of all other necessary setup for usage with TypeScript.

For JS/CJS Configs (.eslintrc.js/.eslintrc.cjs):
module.exports = {
    extends: [
        "@t99"
    ],
    parserOptions: {
        project: "path/to/tsconfig.json"
    }
}
For JSON Configs (.eslintrc.json):
{
    "extends": [
        "@t99"
    ],
    "parserOptions": {
        "project": "path/to/tsconfig.json"
    }
}
For YAML/YML Configs (.eslintrc.yaml/.eslintrc.yml):
extends:
    @t99
parserOptions:
    project: "path/to/tsconfig.json"

Building Your Own Shareable ESLint Config Repo/Package

Check out the official ESLint guide on doing so here.

License

@t99/eslint-config is made available under the GNU General Public License v3.

Copyright (C) 2022 Trevor Sears

1.5.0

10 months ago

1.4.2

1 year ago

1.4.1

1 year ago

1.4.0

1 year ago

1.3.14

1 year ago

1.3.13

1 year ago

1.3.7

1 year ago

1.3.6

1 year ago

1.3.5

1 year ago

1.3.4

1 year ago

1.3.3

1 year ago

1.3.2

1 year ago

1.3.0

1 year ago

1.3.10

1 year ago

1.3.11

1 year ago

1.3.12

1 year ago

1.3.9

1 year ago

1.3.8

1 year ago

1.2.13

2 years ago

1.2.12

2 years ago

1.2.11

2 years ago

1.2.10

2 years ago

1.2.9

2 years ago

1.2.8

2 years ago

1.2.7

2 years ago

1.2.6

2 years ago

1.2.5

2 years ago

1.2.4

2 years ago

1.2.3

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.0

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago