@sakitam-gis/kriging
Version:
kriging.js is a Javascript library providing spatial prediction and mapping capabilities via the ordinary kriging algorithm.
78 lines (77 loc) • 1.43 kB
JSON
{
"extends": "tslint-config-airbnb",
"rules": {
"align": [
true,
"parameters",
"statements"
],
"class-name": true,
"indent": [
true,
"spaces"
],
"label-position": true,
"max-line-length": [
true,
120
],
"semicolon": [
true,
"always"
],
"typedef": false,
"no-console": [
false,
"debug",
"info",
"log",
"time",
"timeEnd",
"trace"
],
"typedef-whitespace": [
true,
{
"call-signature": "nospace",
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
},
{
"call-signature": "onespace",
"index-signature": "onespace",
"parameter": "onespace",
"property-declaration": "onespace",
"variable-declaration": "onespace"
}
],
"variable-name": [
true,
"allow-leading-underscore",
"ban-keywords",
"check-format",
"allow-pascal-case"
],
"whitespace": [
true,
"check-branch",
"check-decl",
"check-operator",
"check-separator",
"check-type",
"check-typecast"
],
"import-name": false,
"no-increment-decrement": false
},
"include": [
"src"
],
"exclude": [
"dist",
"node_modules",
"types"
]
}