This commit is contained in:
N. Taylor Mullen 2019-05-07 19:03:13 -07:00
Родитель 1564daffb0
Коммит 1047c9616e
7 изменённых файлов: 25 добавлений и 69 удалений

Просмотреть файл

@ -9,10 +9,6 @@
"sourceMap": true,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
},
"exclude": [
"node_modules",

Просмотреть файл

@ -1,20 +1,3 @@
{
"extends": "tslint:recommended",
"rules": {
"arrow-parens": false,
"file-header": [true, "------"],
"interface-name": false,
"no-console": false,
"no-return-await": true,
"no-inferrable-types": true,
"object-literal-sort-keys": false,
"prefer-template": true,
"quotemark": [true, "single"],
"variable-name": [true, "check-format"],
"max-line-length": {
"options": {
"limit": 200
}
}
}
"extends": "../tslint.json"
}

Просмотреть файл

@ -1,5 +1,5 @@
{
"compilerOptions": {
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"outDir": "dist",
@ -7,13 +7,8 @@
"es6"
],
"sourceMap": true,
"rootDir": "src",
"declaration": true,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
},
"exclude": [
"node_modules",

Просмотреть файл

@ -1,20 +1,3 @@
{
"extends": "tslint:recommended",
"rules": {
"arrow-parens": false,
"file-header": [true, "------"],
"interface-name": false,
"no-console": false,
"no-return-await": true,
"no-inferrable-types": true,
"object-literal-sort-keys": false,
"prefer-template": true,
"quotemark": [true, "single"],
"variable-name": [true, "check-format"],
"max-line-length": {
"options": {
"limit": 200
}
}
}
"extends": "../tslint.json"
}

Просмотреть файл

@ -9,10 +9,6 @@
"sourceMap": true,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
},
"exclude": [
"node_modules",

Просмотреть файл

@ -1,20 +1,3 @@
{
"extends": "tslint:recommended",
"rules": {
"arrow-parens": false,
"file-header": [true, "------"],
"interface-name": false,
"no-console": false,
"no-return-await": true,
"no-inferrable-types": true,
"object-literal-sort-keys": false,
"prefer-template": true,
"quotemark": [true, "single"],
"variable-name": [true, "check-format"],
"max-line-length": {
"options": {
"limit": 200
}
}
}
"extends": "../tslint.json"
}

20
tslint.json Normal file
Просмотреть файл

@ -0,0 +1,20 @@
{
"extends": "tslint:recommended",
"rules": {
"arrow-parens": false,
"file-header": [true, "------"],
"interface-name": false,
"no-console": false,
"no-return-await": true,
"no-inferrable-types": true,
"object-literal-sort-keys": false,
"prefer-template": true,
"quotemark": [true, "single"],
"variable-name": [true, "check-format"],
"max-line-length": {
"options": {
"limit": 200
}
}
}
}