file-js
Version:
Abstract representation of a pathname
80 lines (79 loc) • 1.98 kB
JSON
// 20190102195317
// https://raw.githubusercontent.com/bbc/ibl-bundles-api/master/tslint.json?token=AFEsNOpS6Frf7MGz-VNJ5geLPK3Av45tks5cNlEswA%3D%3D
{
"extends": [
"tslint-microsoft-contrib"
],
"parserOptions": {
"ecmaVersion": 2017
},
"rules": {
"no-magic-numbers": false,
"variable-name": [
true,
"ban-keywords"
],
"align": false,
"max-line-length": false,
"no-parameter-reassignment": true,
"trailing-comma": [
true,
{
"multiline": "never",
"singleline": "never"
}
],
"no-console": true,
"typedef": [
true,
"call-signature",
"parameter",
"member-variable-declaration"
],
"prefer-type-cast": false,
"match-default-export-name": false,
"export-name": false,
"no-default-export": false,
"no-require-imports": false,
"no-implicit-dependencies": [
true,
"dev"
],
"ordered-imports": true,
"no-relative-imports": false,
"await-promise": false,
"completed-docs": false,
"prefer-object-spread": false,
"no-http-string": false,
"no-reserved-keywords": false,
"no-any": false,
"no-unsafe-any": false,
"max-classes-per-file": true,
"non-literal-require": false,
"underscore-consistent-invocation": false,
"mocha-no-side-effect-code": false,
"no-var-requires": false,
"member-access": true,
"missing-jsdoc": false,
"interface-name": false,
"no-backbone-get-set-outside-model": false,
"no-multiline-string": false,
"no-conditional-assignment": true,
"no-empty": false,
"newline-before-return": false,
"array-bracket-spacing": false,
"no-increment-decrement": false,
"strict-boolean-expressions": false,
"newline-per-chained-call": false,
"mocha-avoid-only": true
},
"linterOptions": {
"exclude": [
"node_modules",
"coverage",
"bake-scripts",
"dist",
"**/*.json"
]
}
}