Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-10-05 06:11:53 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-10-05 06:11:53 +0300
commitb892ac7767d111a4762161fecf826f7030d30689 (patch)
tree6fcbbadc3e4af092640c171888e1d7231ca67ca7 /spec/frontend/.eslintrc.yml
parent33a1d1835f5fc146acf0cdda402b5a327ae0d52f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/.eslintrc.yml')
-rw-r--r--spec/frontend/.eslintrc.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/spec/frontend/.eslintrc.yml b/spec/frontend/.eslintrc.yml
index 145e6c8961a..2686a14f9eb 100644
--- a/spec/frontend/.eslintrc.yml
+++ b/spec/frontend/.eslintrc.yml
@@ -26,4 +26,9 @@ rules:
- off
"@gitlab/no-global-event-off":
- off
-
+ import/no-unresolved:
+ - error
+ # The test fixtures and graphql schema are dynamically generated in CI
+ # during the `frontend-fixtures` and `graphql-schema-dump` jobs.
+ # They may not be present during linting.
+ - ignore: ['^test_fixtures\/', 'tmp/tests/graphql/gitlab_schema.graphql']