Is there an example of how to use .flayignore? I'm trying to ignore GraphQL type files because the nature of their typing requires a lot of duplication. I created a .flayignore in the root level that contains the following lines:
# Ignore all GraphQL type files
/app/graphql/types/*
However, that doesn't work - it's still doing a duplicate code check in the files. What do I need to change here?
Is there an example of how to use
.flayignore? I'm trying to ignore GraphQL type files because the nature of their typing requires a lot of duplication. I created a.flayignorein the root level that contains the following lines:However, that doesn't work - it's still doing a duplicate code check in the files. What do I need to change here?