0.0.11 • Published 1 year ago

@kamilmielnik/eslint-config v0.0.11

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year 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

1 year ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago