@faergeek/eslint-config 5.1.0-beta.1 → 5.1.0-beta.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/typescript.js +4 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@faergeek/eslint-config",
3
- "version": "5.1.0-beta.1",
3
+ "version": "5.1.0-beta.2",
4
4
  "main": "index.js",
5
5
  "repository": "git@github.com:faergeek/eslint-config.git",
6
6
  "author": "Sergey Slipchenko <faergeek@gmail.com>",
package/typescript.js CHANGED
@@ -6,7 +6,10 @@ module.exports = {
6
6
  'warn',
7
7
  { 'ts-ignore': 'allow-with-description' },
8
8
  ],
9
- "@typescript-eslint/consistent-type-imports": "warn",
9
+ '@typescript-eslint/consistent-type-imports': [
10
+ 'warn',
11
+ { fixStyle: 'inline-type-imports' },
12
+ ],
10
13
  '@typescript-eslint/explicit-module-boundary-types': 'off',
11
14
  '@typescript-eslint/no-shadow': 'warn',
12
15
  '@typescript-eslint/no-unused-vars': ['warn', { ignoreRestSiblings: true }],