1.3.0 • Published 6 years ago

eslint-config-sensu-apollo v1.3.0

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

eslint-config-sensu-apollo

This package provides Sensu's Apollo GraphQL ESLint settings as an extensible configuration.

version license build

Usage

First, add the package to your project.

yarn add --dev eslint eslint-config-sensu-apollo

# or with npm

npm install --save-dev eslint eslint-config-sensu-apollo

If you did not already have an .eslintrc file you can add one.

./node_modules/.bin/eslint --init

Finally, add the following to your .eslintrc.

{
  "extends": [
    "sensu",
    "sensu-apollo"
  ]
}

graphql-config

The plugin assumes that you have a .graphqlrc file present. See graphql-config for more details on it's options.

{
  "schemaPath": "schema.graphql",
  "includes": ["*.graphql"],
  "excludes": ["tmp/**"]
}