1.1.0 • Published 2 years ago

eslint-config-typescript-alexpagnotta v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Alex Pagnotta's Eslint Typescript Config

Eslint configuration for all my personal projects based on typescript.

Installation

To install it on your project, you can simply run npm install --save-dev eslint-config-typescript-alexpagnotta. Once installed you can just import it in your .eslintrc.js file:

module.exports = {
  extends: ["@alexpagnotta/eslint-config-typescript"],
  ...
};

Typescript config

If your typescript config is not in the root of your project, you can specify the path in the .eslintrc.js file:

module.exports = {
  ...
  parserOptions: {
    project: "./path/to/tsconfig.json",
  },
  ...
};
1.1.0

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago