lightstep-tracer
Version:
> ❗ **This instrumentation is no longer recommended**. Please review [documentation on setting up and configuring the OpenTelemetry Node.js Launcher](https://github.com/lightstep/otel-launcher-node) or [OpenTelemetry JS (Browser)](https://github.com/open-
44 lines (41 loc) • 1.02 kB
Plain Text
{
"extends": "eslint-config-airbnb",
"env": {
"browser": true,
"mocha": true,
"node": true
},
"rules": {
"indent": [2, 4],
"key-spacing": [
2,
{ "align": "colon", "beforeColon": true, "afterColon": true }
],
"prefer-const": [0],
"object-shorthand": [2, "never"],
"guard-for-in": [2],
"no-param-reassign": [0],
"max-len": [2, 120, 4],
"prefer-rest-params": [0],
"no-unused-vars": [2, { "vars": "all", "args": "none" }],
"no-console": [1],
"func-names": [0],
"no-multi-spaces": [
2,
{
"exceptions": {
"AssignmentExpression": true,
"VariableDeclarator": true
}
}
],
"consistent-return": [0],
"no-underscore-dangle": "off",
"class-methods-use-this": "off",
"no-plusplus": "off",
// TODO: This should be turned on and fixed
"global-require": "off",
// Disabled as the "exceptions" clause does not seem to currently work
"spaced-comment": [0]
}
}