diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-05-28 00:38:50 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-05-28 00:40:43 +0200 |
commit | 7fff4499fd915bcea3fa93b1aa8b35f4fe7a6027 (patch) | |
tree | 6de9a1aebd150a23b7f8c273ec657a5d0a18fe3e /node_modules/tslint/lib/configs/recommended.d.ts | |
parent | 963b7a41feb29cc4be090a2446bdfe0c1f1bcd81 (diff) |
add linting (and some initial fixes)
Diffstat (limited to 'node_modules/tslint/lib/configs/recommended.d.ts')
-rw-r--r-- | node_modules/tslint/lib/configs/recommended.d.ts | 236 |
1 files changed, 236 insertions, 0 deletions
diff --git a/node_modules/tslint/lib/configs/recommended.d.ts b/node_modules/tslint/lib/configs/recommended.d.ts new file mode 100644 index 000000000..75e3bba56 --- /dev/null +++ b/node_modules/tslint/lib/configs/recommended.d.ts @@ -0,0 +1,236 @@ +/** + * @license + * Copyright 2016 Palantir Technologies, Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +export declare const rules: { + "adjacent-overload-signatures": boolean; + "align": { + options: string[]; + }; + "array-type": { + options: string[]; + }; + "arrow-parens": boolean; + "arrow-return-shorthand": boolean; + "ban-types": { + options: string[][]; + }; + "callable-types": boolean; + "class-name": boolean; + "comment-format": { + options: string[]; + }; + "curly": boolean; + "cyclomatic-complexity": boolean; + "eofline": boolean; + "forin": boolean; + "import-spacing": boolean; + "indent": { + options: string[]; + }; + "interface-name": { + options: string[]; + }; + "interface-over-type-literal": boolean; + "jsdoc-format": boolean; + "label-position": boolean; + "max-classes-per-file": { + options: number[]; + }; + "max-line-length": { + options: number[]; + }; + "member-access": boolean; + "member-ordering": { + options: { + order: string; + }; + }; + "new-parens": boolean; + "no-angle-bracket-type-assertion": boolean; + "no-any": boolean; + "no-arg": boolean; + "no-bitwise": boolean; + "no-conditional-assignment": boolean; + "no-consecutive-blank-lines": boolean; + "no-console": boolean; + "no-construct": boolean; + "no-debugger": boolean; + "no-duplicate-super": boolean; + "no-empty": boolean; + "no-empty-interface": boolean; + "no-eval": boolean; + "no-internal-module": boolean; + "no-invalid-this": boolean; + "no-misused-new": boolean; + "no-namespace": boolean; + "no-parameter-properties": boolean; + "no-reference": boolean; + "no-reference-import": boolean; + "no-shadowed-variable": boolean; + "no-string-literal": boolean; + "no-string-throw": boolean; + "no-switch-case-fall-through": boolean; + "no-trailing-whitespace": boolean; + "no-unnecessary-initializer": boolean; + "no-unsafe-finally": boolean; + "no-unused-expression": boolean; + "no-use-before-declare": boolean; + "no-var-keyword": boolean; + "no-var-requires": boolean; + "object-literal-key-quotes": { + options: string[]; + }; + "object-literal-shorthand": boolean; + "object-literal-sort-keys": boolean; + "one-line": { + options: string[]; + }; + "one-variable-per-declaration": { + options: string[]; + }; + "only-arrow-functions": { + options: string[]; + }; + "ordered-imports": { + options: { + "import-sources-order": string; + "named-imports-order": string; + }; + }; + "prefer-const": boolean; + "prefer-for-of": boolean; + "quotemark": { + options: string[]; + }; + "radix": boolean; + "semicolon": { + options: string[]; + }; + "space-before-function-paren": { + options: { + anonymous: string; + asyncArrow: string; + constructor: string; + method: string; + named: string; + }; + }; + "trailing-comma": { + options: { + multiline: string; + singleline: string; + }; + }; + "triple-equals": { + options: string[]; + }; + "typedef": boolean; + "typedef-whitespace": { + options: { + "call-signature": string; + "index-signature": string; + "parameter": string; + "property-declaration": string; + "variable-declaration": string; + }[]; + }; + "typeof-compare": boolean; + "unified-signatures": boolean; + "use-isnan": boolean; + "variable-name": { + options: string[]; + }; + "whitespace": { + options: string[]; + }; +}; +export declare const jsRules: { + "align": { + options: string[]; + }; + "class-name": boolean; + "curly": boolean; + "eofline": boolean; + "forin": boolean; + "import-spacing": boolean; + "indent": { + options: string[]; + }; + "jsdoc-format": boolean; + "label-position": boolean; + "max-line-length": { + options: number[]; + }; + "new-parens": boolean; + "no-arg": boolean; + "no-bitwise": boolean; + "no-conditional-assignment": boolean; + "no-consecutive-blank-lines": boolean; + "no-console": boolean; + "no-construct": boolean; + "no-debugger": boolean; + "no-duplicate-super": boolean; + "no-duplicate-variable": boolean; + "no-empty": boolean; + "no-eval": boolean; + "no-reference": boolean; + "no-shadowed-variable": boolean; + "no-string-literal": boolean; + "no-string-throw": boolean; + "no-switch-case-fall-through": boolean; + "no-trailing-whitespace": boolean; + "no-unused-expression": boolean; + "no-use-before-declare": boolean; + "object-literal-sort-keys": boolean; + "one-line": { + options: string[]; + }; + "one-variable-per-declaration": { + options: string[]; + }; + "quotemark": { + options: string[]; + }; + "radix": boolean; + "semicolon": { + options: string[]; + }; + "space-before-function-paren": { + options: { + anonymous: string; + asyncArrow: string; + constructor: string; + method: string; + named: string; + }; + }; + "trailing-comma": { + options: { + multiline: string; + singleline: string; + }; + }; + "triple-equals": { + options: string[]; + }; + "use-isnan": boolean; + "variable-name": { + options: string[]; + }; + "whitespace": { + options: string[]; + }; +}; |