webpack-plugin-graphql-schema-hot
Version:
Webpack plugin which track changes in your schema files and generate `json` and `txt` files.
35 lines (34 loc) • 752 B
Plain Text
{
"extends": [
"airbnb-base",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"no-underscore-dangle": 0,
"arrow-body-style": 0,
"no-unused-expressions": 0,
"no-plusplus": 0,
"no-console": 0,
"func-names": 0,
"global-require": 0,
"prefer-template": 0,
"spaced-comment": 0,
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "ignore",
}],
"no-param-reassign": 0,
"import/no-dynamic-require": 0,
"prettier/prettier": ["error", {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
}],
},
}