diff --git a/index.js b/index.js index 7193e78..204e851 100644 --- a/index.js +++ b/index.js @@ -45,6 +45,9 @@ module.exports = { 'ft-flow/semi': [2, 'always'], 'ft-flow/interface-id-match': ['error', '^_?([A-Z][A-Za-z0-9$]*I)$'], 'ft-flow/type-id-match': ['error', '^_?([A-Z][A-Za-z0-9$]*T|Props)$'], + // Turn off for now because of enums until it's fixed. + // Flow basically does this checking for us anyways + 'import/named': 0, 'import/no-extraneous-dependencies': ['error', { devDependencies: true }], // Rule incompatible with flowtype's type imports // eg: import type { Blah } from 'blah'; module.exports = {}; @@ -57,7 +60,7 @@ module.exports = { groups: [['builtin', 'external'], 'internal', ['parent', 'sibling', 'index']], pathGroups: [ { - pattern: '@tabdigital/**', + pattern: '{@tabdigital,@hometale}/**', group: 'internal', position: 'before', }, diff --git a/package.json b/package.json index 257cf08..69bc327 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "eslint-config-bzc", "description": "Eslint Config for my personal and professional projects", - "version": "1.0.8", + "version": "1.0.9", "main": "index.js", "repository": "git@github.com:Brianzchen/eslint-config-bzc.git", "author": "Brian Chen",