@jaxolotl/wdclib
Version:
Required Library to bridge javascript with Tableau. Use the scripts below to create the combined shim library. i.e. npm run-script build_and_copy
29 lines • 942 B
JSON
{
"env": {
"browser": true,
"node": false,
"es6": true
},
"parser": "babel-eslint",
"extends": ["eslint:recommended", "standard"],
"rules": {
"no-console": 0,
"no-unused-vars": ["error", { "args": "after-used" }],
"indent": ["error", 4, { "SwitchCase": 1 }],
"semi": ["error", "always"],
"padded-blocks": 0,
"no-trailing-spaces": [ "error", { "ignoreComments": true } ],
"valid-jsdoc": ["error", {
"requireParamDescription": false,
"requireReturnDescription": false
}],
"require-jsdoc": ["error", {
"require": {
"FunctionDeclaration": true,
"MethodDefinition": true,
"ClassDeclaration": true,
"ArrowFunctionExpression": false
}
}]
}
}