Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/graphql-java/graphql-linalyzer

GraphQL Schema linter and analyzer
https://github.com/graphql-java/graphql-linalyzer

command-line-tool graphql graphql-schema linter

Last synced: 8 days ago
JSON representation

GraphQL Schema linter and analyzer

Awesome Lists containing this project

README

        

# GraphQL Linalyzer

GraphQL schema **li**nter and a**nalyzer** (linalyzer)

## Config file example

```yaml
rules:
- name: camelCase
severity: warning
- name: noTabs
severity: error
```

## Run it via docker

The latest build is available on docker hub via `andimarek/graphql-linalyzer`

```sh
docker run \
-v $(pwd)/:/linalyzer-config.yml \
-v $(pwd)/:/schema.graphql \
andimarek/graphql-linalyzer schema.graphql
```