winston-graylog2
Version:
A graylog2 transport for winston
36 lines (35 loc) • 765 B
JSON
{
"extends": "google",
"plugins": ["prettier"],
"env": {
"node": true,
"es6": true
},
"rules": {
"quote-props": ["error", "as-needed"],
"quotes": ["error", "single", { "avoidEscape": true }],
"max-len": [
"error",
{
"code": 100, // TODO: set back to 80 after all lines can fit
"ignoreTemplateLiterals": true,
"ignoreTrailingComments": true,
"ignoreComments": true,
"ignoreRegExpLiterals": true
}
],
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false,
"arrowParens": "always"
}
]
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
}
}