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-11-18 16:16:36 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-18 16:16:36 +0300
commit311b0269b4eb9839fa63f80c8d7a58f32b8138a0 (patch)
tree07e7870bca8aed6d61fdcc810731c50d2c40af47 /.eslintrc.yml
parent27909cef6c4170ed9205afa7426b8d3de47cbb0c (diff)
Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42
Diffstat (limited to '.eslintrc.yml')
-rw-r--r--.eslintrc.yml21
1 files changed, 21 insertions, 0 deletions
diff --git a/.eslintrc.yml b/.eslintrc.yml
index cd3cd82d4e7..623c1a66301 100644
--- a/.eslintrc.yml
+++ b/.eslintrc.yml
@@ -113,3 +113,24 @@ overrides:
- '*.stories.js'
rules:
filenames/match-regex: off
+ - files:
+ - '*.graphql'
+ plugins:
+ - '@graphql-eslint'
+ parserOptions:
+ parser: '@graphql-eslint/eslint-plugin'
+ operations:
+ - '{,ee/,jh/}app/**/*.graphql'
+ # You can run `bundle exec rake gitlab:graphql:schema:dump` and then uncomment this line
+ # schema: './tmp/tests/graphql/gitlab_schema.graphql'
+ rules:
+ filenames/match-regex: off
+ spaced-comment: off
+ # TODO: We need a way to include this rule + support ee_else_ce fragments
+ #'@graphql-eslint/unique-fragment-name': error
+ # TODO: Uncomment these rules when then `schema` is available
+ #'@graphql-eslint/fragments-on-composite-type': error
+ #'@graphql-eslint/known-argument-names': error
+ #'@graphql-eslint/known-type-names': error
+ '@graphql-eslint/no-anonymous-operations': error
+ '@graphql-eslint/unique-operation-name': error