You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The import/no-extraneous-dependencies rule allows to define a array of glob pattern that are allowed to define import devDependencies. In #15 the rule was overridden to include the project specific path **/.gatsby/** which whitelists all Gatsby specific scripts. Unfortunately this removes all glob pattern defined in the used eslint-config-arcticicestudio (rule is defined in the -base package) resulting in errors in other projects paths like tests.
This can be fixed by importing the paths defined in the preset from the eslint-config-arcticicestudio-base package and merge it with the additional **/.gatsby/** path.
The text was updated successfully, but these errors were encountered:
The import/no-extraneous-dependencies rule allows to define a array of glob pattern that are allowed to define import
devDependencies
. In #15 the rule was overridden to include the project specific path**/.gatsby/**
which whitelists all Gatsby specific scripts. Unfortunately this removes all glob pattern defined in the used eslint-config-arcticicestudio (rule is defined in the-base
package) resulting in errors in other projects paths like tests.This can be fixed by importing the paths defined in the preset from the eslint-config-arcticicestudio-base package and merge it with the additional
**/.gatsby/**
path.The text was updated successfully, but these errors were encountered: