Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 575 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 575 Bytes

nimbus-graphql

A GraphQL Framework with batteries included

npm CircleCI

Developing

VSCode users

Since tslint is being deprecated, we are using eslint. To make the eslint VSCode extension report issues on typescript files we need to add a setting. To do that, add the following snippet on settings.json:

{
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    "typescript",
    "typescriptreact"
  ]
}