配置eslint-plugin-graphql插件
时间: 2023-08-09 12:08:04 浏览: 77
eslint插件
要配置 `eslint-plugin-graphql` 插件,您需要遵循以下步骤:
1. 安装 `eslint-plugin-graphql` 插件:
```
npm install eslint-plugin-graphql --save-dev
```
2. 在您的 `.eslintrc` 配置文件中添加插件:
```
{
"plugins": [
"graphql"
],
"rules": {
"graphql/template-strings": ["error", {
"env": "literal",
"schemaJson": require("./src/schema.json")
}]
}
}
```
其中 `"graphql/template-strings"` 规则使用了 `eslint-plugin-graphql` 插件提供的指令,该指令检查 GraphQL 模板字符串中的语法并对其进行验证。
3. 如果您的 GraphQL 模式是从外部文件加载的,则可以通过将其导入并在配置文件中引用来为插件提供此模式的访问权限:
```
import schema from './schema.graphql';
{
"plugins": [
"graphql"
],
"settings": {
"graphql": {
"schemaString": schema
}
},
"rules": {
"graphql/template-strings": ["error", {
"env": "literal",
"schemaJson": require("./src/schema.json")
}]
}
}
```
以上是配置 `eslint-plugin-graphql` 插件的基本步骤,您可以根据自己的需求进行自定义配置。
阅读全文