r-tamoto-hitotsunagu / template-apollo-expo-next

0 stars 0 forks source link

graphqlのファイルimportを指定の場所からのみimportを許可する #32

Open r-tamoto-hitotsunagu opened 2 years ago

r-tamoto-hitotsunagu commented 2 years ago

import OK

apps/frontend/mobile/src/__generated__/graphql/index.ts のみ importを許可

import 禁止

apps/frontend/mobile/src/graphql の importを禁止 apps/frontend/mobile/src/features/user/graphql のimportを禁止

参考:

r-tamoto-hitotsunagu commented 2 years ago

memo

module.exports = {
  extends: ['../../../.eslintrc.js'],
  rules: {
    'no-restricted-imports': [
      'error',
      {
        paths: ['../graphql', '../../../graphql/**/*', '**/../'],
      },
    ],
  },
};