0.0.11 • Published 2 years ago

@kamilmielnik/eslint-config v0.0.11

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

@kamilmielnik/eslint-config

Setup

  1. Install the package
npm install @kamilmielnik/eslint-config --save-dev
  1. Add @kamilmielnik/eslint-config to extends array in ESLint configuration file.
/* .eslintrc.js */
module.exports = {
  /* ... */
  extends: ['@kamilmielnik/eslint-config'],
};
  1. Make sure your tsconfig.json provides Type Information - your .eslintrc.js should enable parserOptions.project and specify parserOptions.tsconfigRootDir:
/* .eslintrc.js */
module.exports = {
  /* ... */
  parserOptions: {
    project: true,
    tsconfigRootDir: __dirname,
  },
};
0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago