diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-11-18 13:16:36 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-11-18 13:16:36 +0000 |
commit | 311b0269b4eb9839fa63f80c8d7a58f32b8138a0 (patch) | |
tree | 07e7870bca8aed6d61fdcc810731c50d2c40af47 /.eslintrc.yml | |
parent | 27909cef6c4170ed9205afa7426b8d3de47cbb0c (diff) | |
download | gitlab-ce-311b0269b4eb9839fa63f80c8d7a58f32b8138a0.tar.gz |
Add latest changes from gitlab-org/gitlab@14-5-stable-eev14.5.0-rc42
Diffstat (limited to '.eslintrc.yml')
-rw-r--r-- | .eslintrc.yml | 21 |
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 |