global-mercator
Version:
29 lines (28 loc) • 809 B
JSON
{
/*
* Possible values:
* - the name of a built-in config
* - the name of an NPM module which has a "main" file that exports a config object
* - a relative path to a JSON file
*/
"extends": "tslint:latest",
"rules": {
/*
* Any rules specified here will override those from the base config we are extending
*/
"semicolon": [true, "never"],
"no-constructor-vars": true,
"quotemark": [true, "single"],
"ordered-imports": false,
"no-bitwise": false,
"variable-name": [false, "check-format"],
"max-line-length": [true, 150],
"no-console": [false]
},
"rulesDirectory": [
/*
* A list of relative or absolute paths to directories that contain custom rules.
* See the Custom Rules documentation below for more details.
*/
]
}