├── .azure-pipelines-steps.yml ├── .azure-pipelines.yml ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── rule-suggestion.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── additional_rule_metadata.json ├── configs ├── latest.json ├── legacy.json └── recommended.json ├── cwe_descriptions.json ├── docs ├── README.md ├── Releases.md ├── TSLint-and-the-Microsoft-Security-Development-Lifecycle.md ├── react-a11y-img-has-alt-Rule.md ├── react-a11y-props-Rule.md ├── react-a11y-role-has-required-props-Rule.md ├── react-a11y-role-supports-aria-props-Rule.md ├── react-a11y-tabindex-no-positive-Rule.md ├── react-ally-role-Rule.md └── react-no-dangerous-html-Rule.md ├── package.json ├── src ├── chaiPreferContainsToIndexOfRule.ts ├── chaiVagueErrorsRule.ts ├── detectChildProcessRule.ts ├── exportNameRule.ts ├── fixNoRequireImportsFormatter.ts ├── fixNoVarKeywordFormatter.ts ├── functionNameRule.ts ├── importNameRule.ts ├── informativeDocsRule.ts ├── insecureRandomRule.ts ├── jqueryDeferredMustCompleteRule.ts ├── maxFuncBodyLengthRule.ts ├── missingJsdocRule.ts ├── missingOptionalAnnotationRule.ts ├── mochaAvoidOnlyRule.ts ├── mochaNoSideEffectCodeRule.ts ├── mochaUnneededDoneRule.ts ├── noBackboneGetSetOutsideModelRule.ts ├── noBannedTermsRule.ts ├── noConstantConditionRule.ts ├── noControlRegexRule.ts ├── noCookiesRule.ts ├── noDeleteExpressionRule.ts ├── noDisableAutoSanitizationRule.ts ├── noDocumentDomainRule.ts ├── noDocumentWriteRule.ts ├── noDuplicateCaseRule.ts ├── noDuplicateParameterNamesRule.ts ├── noEmptyInterfacesRule.ts ├── noEmptyLineAfterOpeningBraceRule.ts ├── noExecScriptRule.ts ├── noForInRule.ts ├── noFunctionConstructorWithStringArgsRule.ts ├── noFunctionExpressionRule.ts ├── noHttpStringRule.ts ├── noIncrementDecrementRule.ts ├── noInnerHtmlRule.ts ├── noInvalidRegexpRule.ts ├── noJqueryRawElementsRule.ts ├── noMissingVisibilityModifiersRule.ts ├── noMultilineStringRule.ts ├── noMultipleVarDeclRule.ts ├── noOctalLiteralRule.ts ├── noRegexSpacesRule.ts ├── noRelativeImportsRule.ts ├── noReservedKeywordsRule.ts ├── noSingleLineBlockCommentRule.ts ├── noStatelessClassRule.ts ├── noStringBasedSetImmediateRule.ts ├── noStringBasedSetIntervalRule.ts ├── noStringBasedSetTimeoutRule.ts ├── noSuspiciousCommentRule.ts ├── noTypeofUndefinedRule.ts ├── noUnexternalizedStringsRule.ts ├── noUnnecessaryBindRule.ts ├── noUnnecessaryFieldInitializationRule.ts ├── noUnnecessaryLocalVariableRule.ts ├── noUnnecessaryOverrideRule.ts ├── noUnnecessarySemicolonsRule.ts ├── noUnsupportedBrowserCodeRule.ts ├── noUselessFilesRule.ts ├── noVarSelfRule.ts ├── noWithStatementRule.ts ├── nonLiteralFsPathRule.ts ├── nonLiteralRequireRule.ts ├── possibleTimingAttackRule.ts ├── preferArrayLiteralRule.ts ├── preferTypeCastRule.ts ├── promiseMustCompleteRule.ts ├── reactA11yAccessibleHeadingsRule.ts ├── reactA11yAnchorsRule.ts ├── reactA11yAriaUnsupportedElementsRule.ts ├── reactA11yEventHasRoleRule.ts ├── reactA11yIframesRule.ts ├── reactA11yImageButtonHasAltRule.ts ├── reactA11yImgHasAltRule.ts ├── reactA11yInputElementsRule.ts ├── reactA11yLangRule.ts ├── reactA11yMediaCaptionsRule.ts ├── reactA11yMetaRule.ts ├── reactA11yMouseEventHasKeyEventRule.ts ├── reactA11yNoOnchangeRule.ts ├── reactA11yPropsRule.ts ├── reactA11yProptypesRule.ts ├── reactA11yRequiredRule.ts ├── reactA11yRoleHasRequiredAriaPropsRule.ts ├── reactA11yRoleRule.ts ├── reactA11yRoleSupportsAriaPropsRule.ts ├── reactA11yTabindexNoPositiveRule.ts ├── reactA11yTitlesRule.ts ├── reactAnchorBlankNoopenerRule.ts ├── reactIframeMissingSandboxRule.ts ├── reactNoDangerousHtmlRule.ts ├── reactThisBindingIssueRule.ts ├── reactTsxCurlySpacingRule.ts ├── reactUnusedPropsAndStateRule.ts ├── tests │ ├── AstUtilsTests.ts │ ├── ExportNameRuleTests.ts │ ├── FixNoRequireImportsFormatterTests.ts │ ├── FixNoVarKeywordFormatterTests.ts │ ├── FunctionNameRuleTests.ts │ ├── GetImplicitRoleTest.ts │ ├── ImportNameRuleTests.ts │ ├── InformativeDocsRuleTests.ts │ ├── InsecureRandomRuleTests.ts │ ├── MaxFuncBodyLengthRuleTests.ts │ ├── MissingJsdocRuleTests.ts │ ├── MissingOptionalAnnotationTests.ts │ ├── MochaAvoidOnlyRuleTests.ts │ ├── MochaNoSideEffectCodeRuleTests.ts │ ├── MochaUnneededDoneRuleTests.ts │ ├── NoBackboneGetSetOutsideModelRuleTests.ts │ ├── NoBannedTermsTests.ts │ ├── NoConstantConditionRuleTests.ts │ ├── NoControlRegexRuleTests.ts │ ├── NoCookiesTests.ts │ ├── NoDeleteExpressionTests.ts │ ├── NoDisableAutoSanitizationTests.ts │ ├── NoDocumentDomainRuleTests.ts │ ├── NoDocumentWriteTests.ts │ ├── NoDuplicateCaseRuleTests.ts │ ├── NoDuplicateParameterNamesTests.ts │ ├── NoEmptyInterfacesRuleTests.ts │ ├── NoEmptyLineAfterOpeningBraceRuleTests.ts │ ├── NoExecScriptTests.ts │ ├── NoForInRuleTests.ts │ ├── NoFunctionConstructorWithStringArgsTests.ts │ ├── NoFunctionExpressionRuleTests.ts │ ├── NoHttpStringRuleTests.ts │ ├── NoIncrementDecrementTests.ts │ ├── NoInnerHtmlRuleTests.ts │ ├── NoInvalidRegexpRuleTests.ts │ ├── NoJqueryRawElementsRuleTests.ts │ ├── NoMissingVisibilityModifiersRuleTests.ts │ ├── NoMultilineStringTests.ts │ ├── NoMultipleVarDeclRuleTests.ts │ ├── NoOctalLiteralTests.ts │ ├── NoRegexSpacesRuleTests.ts │ ├── NoReservedKeywordsTests.ts │ ├── NoSingleLineBlockCommentRuleTests.ts │ ├── NoStatelessClassRuleTests.ts │ ├── NoStringBasedSetImmediateTests.ts │ ├── NoStringBasedSetIntervalTests.ts │ ├── NoStringBasedSetTimeoutTests.ts │ ├── NoSuspiciousCommentRuleTests.ts │ ├── NoTypeofUndefinedRuleTests.ts │ ├── NoUnexternalizedStringsRuleTests.ts │ ├── NoUnnecessarySemicolonsTests.ts │ ├── NoUnsupportedBrowserCodeRuleTests.ts │ ├── PreferTypeCastRuleTests.ts │ ├── ReactA11yAnchorsRuleTests.ts │ ├── ReactA11yAriaUnsupportedElementsRuleTest.ts │ ├── ReactA11yEventHasRoleRuleTest.ts │ ├── ReactA11yImageButtonHasAltRuleTests.ts │ ├── ReactA11yInputElementsRuleTests.ts │ ├── ReactA11yLangRuleTests.ts │ ├── ReactA11yMetaRuleTests.ts │ ├── ReactA11yNoOnchangeRuleTests.ts │ ├── ReactA11yProptypesRuleTest.ts │ ├── ReactA11yRequiredRuleTests.ts │ ├── ReactA11yTitlesRuleTests.ts │ ├── ReactAnchorBlankNoopenerRuleTests.ts │ ├── ReactIframeMissingSandboxRuleTests.ts │ ├── ReactNoDangerousHtmlRuleTests.ts │ ├── ReactThisBindingIssueRuleTests.ts │ ├── TestHelper.ts │ ├── TypeGuardTests.ts │ ├── UtilsTests.ts │ ├── jqueryDeferredMustCompleteRuleTests.ts │ ├── noUnnecessaryFieldInitializationRuleTests.ts │ ├── reactA11yAccessibleHeadingsRuleTests.ts │ ├── reactA11yImgHasAltRuleTests.ts │ ├── reactA11yPropsRuleTests.ts │ ├── reactA11yRoleHasRequiredAriaPropsRuleTests.ts │ ├── reactA11yRoleRuleTests.ts │ ├── reactA11yRoleSupportsAriaPropsRuleTests.ts │ ├── reactA11yTabindexNoPositiveRuleTests.ts │ ├── tslint.json │ └── useSimpleAttributeRuleTests.ts ├── underscoreConsistentInvocationRule.ts ├── useNamedParameterRule.ts ├── useSimpleAttributesRule.ts ├── utils │ ├── AstUtils.ts │ ├── BannedTermWalker.ts │ ├── BaseFormatter.ts │ ├── ChaiUtils.ts │ ├── ExtendedMetadata.ts │ ├── JsxAttribute.ts │ ├── MochaUtils.ts │ ├── NodeDocs.ts │ ├── Scope.ts │ ├── TypeGuard.ts │ ├── Utils.ts │ ├── attributes │ │ ├── IAria.ts │ │ ├── IDom.ts │ │ ├── IRole.ts │ │ ├── README.md │ │ ├── ariaSchema.json │ │ ├── domSchema.json │ │ └── roleSchema.json │ ├── createNoStringParameterToFunctionWalker.ts │ ├── getImplicitRole.ts │ └── implicitRoles │ │ ├── README.md │ │ ├── a.ts │ │ ├── area.ts │ │ ├── article.ts │ │ ├── aside.ts │ │ ├── body.ts │ │ ├── button.ts │ │ ├── datalist.ts │ │ ├── dd.ts │ │ ├── details.ts │ │ ├── dialog.ts │ │ ├── dl.ts │ │ ├── dt.ts │ │ ├── footer.ts │ │ ├── form.ts │ │ ├── h1.ts │ │ ├── h2.ts │ │ ├── h3.ts │ │ ├── h4.ts │ │ ├── h5.ts │ │ ├── h6.ts │ │ ├── header.ts │ │ ├── hr.ts │ │ ├── img.ts │ │ ├── index.ts │ │ ├── input.ts │ │ ├── li.ts │ │ ├── link.ts │ │ ├── main.ts │ │ ├── math.ts │ │ ├── menu.ts │ │ ├── menuitem.ts │ │ ├── meter.ts │ │ ├── nav.ts │ │ ├── ol.ts │ │ ├── optgroup.ts │ │ ├── option.ts │ │ ├── output.ts │ │ ├── progress.ts │ │ ├── section.ts │ │ ├── select.ts │ │ ├── summary.ts │ │ ├── table.ts │ │ ├── tbody.ts │ │ ├── td.ts │ │ ├── textarea.ts │ │ ├── tfoot.ts │ │ ├── th.ts │ │ ├── thead.ts │ │ ├── tr.ts │ │ └── ul.ts ├── validTypeofRule.ts └── voidZeroRule.ts ├── test-data ├── ExportName │ ├── ExportNameRuleFailingTestInput.ts │ ├── ExportNameRuleFailingTestInput2.tsx │ ├── ExportNameRulePassingTestInput.ts │ ├── ExportNameRulePassingTestInput2.tsx │ ├── PrefixedExpectedClassName.ts │ ├── export-name-rule-passing-test-input-3.tsx │ └── export_name_rule_passing_test_input_4.tsx ├── NoCookies │ ├── NoCookiesFailingTestInput.ts │ ├── NoCookiesPassingTestInput.ts │ └── NoCookiesTestInput-error.ts ├── NoFunctionConstructorWithStringArgsTestInput.ts ├── NoFunctionExpressionWithInTSX.tsx ├── NoOctalLiteral │ └── NoOctalLiteralTestInput-passing.ts ├── NoReservedKeywords │ ├── NoReservedKeywordsTestInput-any.ts │ ├── NoReservedKeywordsTestInput-as.ts │ ├── NoReservedKeywordsTestInput-boolean.ts │ ├── NoReservedKeywordsTestInput-break.ts │ ├── NoReservedKeywordsTestInput-case.ts │ ├── NoReservedKeywordsTestInput-catch.ts │ ├── NoReservedKeywordsTestInput-class.ts │ ├── NoReservedKeywordsTestInput-const.ts │ ├── NoReservedKeywordsTestInput-constructor.ts │ ├── NoReservedKeywordsTestInput-continue.ts │ ├── NoReservedKeywordsTestInput-debugger.ts │ ├── NoReservedKeywordsTestInput-declare.ts │ ├── NoReservedKeywordsTestInput-default.ts │ ├── NoReservedKeywordsTestInput-delete.ts │ ├── NoReservedKeywordsTestInput-do.ts │ ├── NoReservedKeywordsTestInput-else.ts │ ├── NoReservedKeywordsTestInput-enum.ts │ ├── NoReservedKeywordsTestInput-export.ts │ ├── NoReservedKeywordsTestInput-extends.ts │ ├── NoReservedKeywordsTestInput-false.ts │ ├── NoReservedKeywordsTestInput-finally.ts │ ├── NoReservedKeywordsTestInput-for.ts │ ├── NoReservedKeywordsTestInput-from.ts │ ├── NoReservedKeywordsTestInput-function.ts │ ├── NoReservedKeywordsTestInput-get.ts │ ├── NoReservedKeywordsTestInput-if.ts │ ├── NoReservedKeywordsTestInput-implements.ts │ ├── NoReservedKeywordsTestInput-import.ts │ ├── NoReservedKeywordsTestInput-in.ts │ ├── NoReservedKeywordsTestInput-instanceof.ts │ ├── NoReservedKeywordsTestInput-interface.ts │ ├── NoReservedKeywordsTestInput-let.ts │ ├── NoReservedKeywordsTestInput-module.ts │ ├── NoReservedKeywordsTestInput-new.ts │ ├── NoReservedKeywordsTestInput-null.ts │ ├── NoReservedKeywordsTestInput-number.ts │ ├── NoReservedKeywordsTestInput-of.ts │ ├── NoReservedKeywordsTestInput-package.ts │ ├── NoReservedKeywordsTestInput-private.ts │ ├── NoReservedKeywordsTestInput-protected.ts │ ├── NoReservedKeywordsTestInput-public.ts │ ├── NoReservedKeywordsTestInput-require.ts │ ├── NoReservedKeywordsTestInput-return.ts │ ├── NoReservedKeywordsTestInput-set.ts │ ├── NoReservedKeywordsTestInput-static.ts │ ├── NoReservedKeywordsTestInput-string.ts │ ├── NoReservedKeywordsTestInput-super.ts │ ├── NoReservedKeywordsTestInput-switch.ts │ ├── NoReservedKeywordsTestInput-symbol.ts │ ├── NoReservedKeywordsTestInput-this.ts │ ├── NoReservedKeywordsTestInput-throw.ts │ ├── NoReservedKeywordsTestInput-true.ts │ ├── NoReservedKeywordsTestInput-try.ts │ ├── NoReservedKeywordsTestInput-type.ts │ ├── NoReservedKeywordsTestInput-typeof.ts │ ├── NoReservedKeywordsTestInput-var.ts │ ├── NoReservedKeywordsTestInput-void.ts │ ├── NoReservedKeywordsTestInput-while.ts │ ├── NoReservedKeywordsTestInput-with.ts │ └── NoReservedKeywordsTestInput-yield.ts ├── NoStringBasedSetImmediateTestInput.ts ├── NoStringBasedSetIntervalTestInput.ts ├── NoStringBasedSetTimeout │ ├── NoStringBasedSetTimeoutFailingTestInput-any-functions.ts │ ├── NoStringBasedSetTimeoutFailingTestInput-any-variables.ts │ ├── NoStringBasedSetTimeoutFailingTestInput-constructor.ts │ ├── NoStringBasedSetTimeoutFailingTestInput-parameters.ts │ ├── NoStringBasedSetTimeoutFailingTestInput-string-functions.ts │ ├── NoStringBasedSetTimeoutFailingTestInput-string-literals.ts │ ├── NoStringBasedSetTimeoutFailingTestInput-string-variables.ts │ ├── NoStringBasedSetTimeoutFailingTestInput-template-strings.ts │ ├── NoStringBasedSetTimeoutTestInput-case2.ts │ ├── NoStringBasedSetTimeoutTestInput-case3.ts │ ├── NoStringBasedSetTimeoutTestInput-case4.ts │ ├── NoStringBasedSetTimeoutTestInput-error.ts │ ├── NoStringBasedSetTimeoutTestInput-error3.ts │ ├── NoStringBasedSetTimeoutTestInput-error4.ts │ ├── NoStringBasedSetTimeoutTestInput-error5.ts │ ├── NoStringBasedSetTimeoutTestInput-formerFalsePositive.ts │ ├── NoStringBasedSetTimeoutTestInput-functionParamFunction.ts │ ├── NoStringBasedSetTimeoutTestInput-issue46.ts │ └── NoStringBasedSetTimeoutTestInput-shadowedVariables.ts ├── NoUnnecessarySemicolonsTestInput.ts ├── PreferTypeCastRuleTests-passing.tsx ├── ReactThisBinding │ ├── ReactThisBindingIssue-anon-instance.tsx │ ├── ReactThisBindingIssue-doublebinding.tsx │ ├── ReactThisBindingIssue-local-instance.tsx │ ├── ReactThisBindingIssue-passing.tsx │ ├── ReactThisBindingIssue-unbound.tsx │ ├── ReactThisBindingIssueWithDecorator-passing.tsx │ └── ReactThisBindingIssueWithDecoratorDeclaredAfterUsage-passing.tsx ├── a11yImgHasAlt │ ├── CustomElementTests │ │ ├── FailingTestInputs │ │ │ ├── CustomElementHasEmptyAltValueAndNotPresentationRole.tsx │ │ │ ├── CustomElementHasNoAltProp.tsx │ │ │ └── CustomElementHasNonEmptyAltValueAndPresentationRole.tsx │ │ └── PassingTestInputs │ │ │ ├── CustomElementHasNonEmptyAltValueAndNotPresentationRole.tsx │ │ │ └── ElementNeitherImgNorCustomElement.tsx │ └── DefaltTests │ │ ├── FailingTestInputs │ │ ├── ImgElementHasNoAlt.tsx │ │ └── ImgElementHasNonEmptyAltValueAndPresentationRole.tsx │ │ └── PassingTestInputs │ │ ├── ElementNotImg.tsx │ │ ├── ImgElementHasNonEmptyAltValueAndNotPresentationRole.tsx │ │ ├── ImgElementHasNonEmptyAltValueAndPresentationRole.tsx │ │ ├── ImgElementHasNonEmptyAltValueAndUndefinedPresentationRole.tsx │ │ ├── ImgElementHasSpreadAttribute.tsx │ │ └── ImgElementNotLowerCase.tsx ├── a11yProps │ ├── FailingTestInputs │ │ └── InvalidAriaAttributeName.tsx │ └── PassingTestInputs │ │ ├── AttributeNotAria.tsx │ │ └── CorrectAriaAttributeName.tsx ├── a11yProptypes │ ├── FailingTestInputs │ │ ├── boolean.tsx │ │ ├── integer.tsx │ │ ├── notAllowUndefined.tsx │ │ ├── number.tsx │ │ ├── string.tsx │ │ ├── token.tsx │ │ ├── tokenlist.tsx │ │ └── tristate.tsx │ └── PassingTestInputs │ │ ├── allowUndefined.tsx │ │ ├── boolean.tsx │ │ ├── canNotCheckUntilRunTime.tsx │ │ ├── integer.tsx │ │ ├── number.tsx │ │ ├── string.tsx │ │ ├── token.tsx │ │ ├── tokenlist.tsx │ │ └── tristate.tsx ├── a11yRole │ ├── FailingTestInputs │ │ ├── AbstractRole.tsx │ │ └── InvalidRole.tsx │ └── PassingTestInputs │ │ ├── AttributeNotRole.tsx │ │ ├── CorrectName.tsx │ │ ├── MultipleCorrectRole.tsx │ │ └── RoleNameNotStringLiteral.tsx ├── a11yRoleHasRequiredAriaProps │ ├── FailingTestInputs │ │ └── ExplicitRoleMissingRequiredProps.tsx │ └── PassingTestInputs │ │ ├── AttributeHasNoValidRole.tsx │ │ ├── RoleHasNoRequiredProps.tsx │ │ ├── RoleValueAndAttributesHaveRequiredProps.tsx │ │ └── RoleValueNotLiteralString.tsx ├── a11yRoleSupportsAriaProps │ ├── FailingTestInputs │ │ ├── ElementHasNotSupportedAriaPropsForEmptyRole.tsx │ │ ├── ElementHasNotSupportedAriaPropsForExplicitRole.tsx │ │ └── ElementHasNotSupportedAriaPropsForImplicitRole.tsx │ └── PassingTestInputs │ │ ├── CustomElementSupportsAllAriaProps.tsx │ │ ├── ExplicitRoleSupportsAllAriaProps.tsx │ │ ├── ImplicitRoleSupportsAllAriaProps.tsx │ │ └── UnretrievableRoleSupportsAllAriaProps.tsx ├── a11yTabindexNoPositive │ ├── FailingTestInputs │ │ └── TabindexValueNotNumericLiteral.tsx │ └── PassingTestInputs │ │ ├── AttributeNotTabindex.tsx │ │ ├── CorrectTabindexValue.tsx │ │ └── TabindexValueNotLiteral.tsx ├── references.ts └── tsconfig.json ├── tests ├── chai-prefer-contains-to-index-of │ ├── test.ts.lint │ └── tslint.json ├── chai-vague-errors │ ├── test.ts.lint │ └── tslint.json ├── detect-child-process │ ├── test.ts.lint │ └── tslint.json ├── export-name │ └── defaults │ │ ├── re-export-external.ts.lint │ │ └── tslint.json ├── no-relative-imports │ ├── allow-siblings │ │ ├── test.js.lint │ │ ├── test.ts.lint │ │ └── tslint.json │ └── default │ │ ├── test.js.lint │ │ ├── test.ts.lint │ │ └── tslint.json ├── no-unnecessary-bind │ ├── test.ts.lint │ └── tslint.json ├── no-unnecessary-field-initialization │ ├── test.ts.lint │ └── tslint.json ├── no-unnecessary-local-variable │ ├── test.ts.lint │ └── tslint.json ├── no-unnecessary-override │ ├── test.ts.lint │ └── tslint.json ├── no-unsupported-browser-code │ ├── test.ts.lint │ └── tslint.json ├── no-useless-files │ ├── code │ │ ├── test.ts.lint │ │ └── tslint.json │ ├── empty │ │ ├── test.ts.lint │ │ └── tslint.json │ ├── mixed comments │ │ ├── test.ts.lint │ │ └── tslint.json │ ├── multi line comments │ │ ├── test.ts.lint │ │ └── tslint.json │ └── single line comments │ │ ├── test.ts.lint │ │ └── tslint.json ├── no-var-self │ ├── default │ │ ├── test.ts.lint │ │ └── tslint.json │ ├── negation parameter │ │ ├── test.ts.lint │ │ └── tslint.json │ └── parameter │ │ ├── test.ts.lint │ │ └── tslint.json ├── no-with-statement │ ├── test.ts.lint │ └── tslint.json ├── non-literal-fs-path │ ├── test.ts.lint │ └── tslint.json ├── non-literal-require │ ├── test.ts.lint │ └── tslint.json ├── possible-timing-attack │ ├── test.ts.lint │ └── tslint.json ├── prefer-array-literal │ ├── allow-size-argument-typed │ │ ├── test.ts.lint │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── allow-size-argument │ │ ├── test.ts.lint │ │ └── tslint.json │ ├── allow-type-parameters │ │ ├── test.ts.lint │ │ └── tslint.json │ └── default │ │ ├── test.ts.lint │ │ └── tslint.json ├── promise-must-complete │ ├── test.ts.lint │ └── tslint.json ├── react-a11y-iframes │ ├── test.tsx.lint │ └── tslint.json ├── react-a11y-media-captions │ ├── test.tsx.lint │ └── tslint.json ├── react-a11y-mouse-event-has-key-event │ ├── test.tsx.lint │ └── tslint.json ├── react-unused-props-and-state │ ├── class-components │ │ ├── custom-names │ │ │ ├── reports-missing-props-and-state-with-custom-name.tsx.lint │ │ │ └── tslint.json │ │ └── default │ │ │ ├── passes-when-all-props-and-state-used.tsx.lint │ │ │ ├── passes-when-functions-are-used.tsx.lint │ │ │ ├── passes-when-interfaces-defined-at-end.tsx.lint │ │ │ ├── passes-when-props-and-state-escape-the-class-or-function.tsx.lint │ │ │ ├── passes-when-props-escapes-from-componentdidupdate.tsx.lint │ │ │ ├── passes-when-props-escapes-from-componentwillreceiveprops.tsx.lint │ │ │ ├── passes-when-props-escapes-from-componentwillupdate.tsx.lint │ │ │ ├── passes-when-props-escapes-from-shouldcomponentupdate.tsx.lint │ │ │ ├── passes-when-props-referenced-from-lifecycle-method.tsx.lint │ │ │ ├── passes-when-props-referenced-in-constructor.tsx.lint │ │ │ ├── passes-when-state-escapes-from-componentdidupdate.tsx.lint │ │ │ ├── passes-when-state-escapes-from-componentwillupdate.tsx.lint │ │ │ ├── passes-when-state-escapes-from-shouldcomponentupdate.tsx.lint │ │ │ ├── passes-when-state-referenced-from-lifecycle-method.tsx.lint │ │ │ ├── reports-missing-functions.tsx.lint │ │ │ ├── reports-missing-props-and-state.tsx.lint │ │ │ ├── reports-when-used-in-ternary.tsx.lint │ │ │ └── tslint.json │ └── functions │ │ ├── arrow-functions │ │ ├── passes-for-object-binding.tsx.lint │ │ ├── reports-for-object-binding.tsx.lint │ │ └── tslint.json │ │ ├── function-components │ │ ├── passes-for-prop-alias-in-type-reference.tsx.lint │ │ ├── passes-for-prop-in-type-reference.tsx.lint │ │ ├── reports-for-explicit-import-shorthand.tsx.lint │ │ ├── reports-for-explicit-import.tsx.lint │ │ └── tslint.json │ │ ├── functions │ │ ├── passes-for-example-from-issue-339.tsx.lint │ │ ├── passes-for-function-when-prop-in-type-reference.tsx.lint │ │ ├── passes-for-object-binding.tsx.lint │ │ ├── passes-for-prop-alias-in-type-reference.tsx.lint │ │ ├── reports-for-object-binding.tsx.lint │ │ ├── reports-for-prop-missing-in-type-reference.tsx.lint │ │ └── tslint.json │ │ └── stateless-functions │ │ ├── passes-for-all-props-used-in-jsx-return-value.tsx.lint │ │ ├── passes-for-jsx-assigned-to-variable.tsx.lint │ │ ├── passes-for-prop-alias-in-type-literal.tsx.lint │ │ ├── passes-for-prop-alias-in-type-reference.tsx.lint │ │ ├── passes-for-prop-in-type-literal.tsx.lint │ │ ├── passes-for-prop-in-type-reference.tsx.lint │ │ ├── reports-for-explicit-import-shorthand.tsx.lint │ │ ├── reports-for-explicit-import.tsx.lint │ │ ├── reports-for-prop-alias-in-type-literal.tsx.lint │ │ ├── reports-for-prop-alias-in-type-reference.tsx.lint │ │ ├── reports-for-prop-in-complex-statement.tsx.lint │ │ ├── reports-for-prop-in-object-binding-and-complex-statement.tsx.lint │ │ ├── reports-for-prop-in-type-literal.tsx.lint │ │ ├── reports-for-prop-in-type-reference.tsx.lint │ │ └── tslint.json ├── underscore-consistent-invocation │ ├── default │ │ ├── test.ts.lint │ │ └── tslint.json │ └── static │ │ ├── test.ts.lint │ │ └── tslint.json ├── use-named-parameter │ ├── test.ts.lint │ └── tslint.json ├── valid-typeof │ ├── test.ts.lint │ └── tslint.json └── void-zero │ ├── test.ts.fix │ ├── test.ts.lint │ └── tslint.json ├── tsconfig.json ├── tslint-warnings.csv └── tslint.json /.azure-pipelines-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.azure-pipelines-steps.yml -------------------------------------------------------------------------------- /.azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.azure-pipelines.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/rule-suggestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.github/ISSUE_TEMPLATE/rule-suggestion.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/README.md -------------------------------------------------------------------------------- /additional_rule_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/additional_rule_metadata.json -------------------------------------------------------------------------------- /configs/latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/configs/latest.json -------------------------------------------------------------------------------- /configs/legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/configs/legacy.json -------------------------------------------------------------------------------- /configs/recommended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/configs/recommended.json -------------------------------------------------------------------------------- /cwe_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/cwe_descriptions.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Releases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/docs/Releases.md -------------------------------------------------------------------------------- /docs/TSLint-and-the-Microsoft-Security-Development-Lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/docs/TSLint-and-the-Microsoft-Security-Development-Lifecycle.md -------------------------------------------------------------------------------- /docs/react-a11y-img-has-alt-Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/docs/react-a11y-img-has-alt-Rule.md -------------------------------------------------------------------------------- /docs/react-a11y-props-Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/docs/react-a11y-props-Rule.md -------------------------------------------------------------------------------- /docs/react-a11y-role-has-required-props-Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/docs/react-a11y-role-has-required-props-Rule.md -------------------------------------------------------------------------------- /docs/react-a11y-role-supports-aria-props-Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/docs/react-a11y-role-supports-aria-props-Rule.md -------------------------------------------------------------------------------- /docs/react-a11y-tabindex-no-positive-Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/docs/react-a11y-tabindex-no-positive-Rule.md -------------------------------------------------------------------------------- /docs/react-ally-role-Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/docs/react-ally-role-Rule.md -------------------------------------------------------------------------------- /docs/react-no-dangerous-html-Rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/docs/react-no-dangerous-html-Rule.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/package.json -------------------------------------------------------------------------------- /src/chaiPreferContainsToIndexOfRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/chaiPreferContainsToIndexOfRule.ts -------------------------------------------------------------------------------- /src/chaiVagueErrorsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/chaiVagueErrorsRule.ts -------------------------------------------------------------------------------- /src/detectChildProcessRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/detectChildProcessRule.ts -------------------------------------------------------------------------------- /src/exportNameRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/exportNameRule.ts -------------------------------------------------------------------------------- /src/fixNoRequireImportsFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/fixNoRequireImportsFormatter.ts -------------------------------------------------------------------------------- /src/fixNoVarKeywordFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/fixNoVarKeywordFormatter.ts -------------------------------------------------------------------------------- /src/functionNameRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/functionNameRule.ts -------------------------------------------------------------------------------- /src/importNameRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/importNameRule.ts -------------------------------------------------------------------------------- /src/informativeDocsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/informativeDocsRule.ts -------------------------------------------------------------------------------- /src/insecureRandomRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/insecureRandomRule.ts -------------------------------------------------------------------------------- /src/jqueryDeferredMustCompleteRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/jqueryDeferredMustCompleteRule.ts -------------------------------------------------------------------------------- /src/maxFuncBodyLengthRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/maxFuncBodyLengthRule.ts -------------------------------------------------------------------------------- /src/missingJsdocRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/missingJsdocRule.ts -------------------------------------------------------------------------------- /src/missingOptionalAnnotationRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/missingOptionalAnnotationRule.ts -------------------------------------------------------------------------------- /src/mochaAvoidOnlyRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/mochaAvoidOnlyRule.ts -------------------------------------------------------------------------------- /src/mochaNoSideEffectCodeRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/mochaNoSideEffectCodeRule.ts -------------------------------------------------------------------------------- /src/mochaUnneededDoneRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/mochaUnneededDoneRule.ts -------------------------------------------------------------------------------- /src/noBackboneGetSetOutsideModelRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noBackboneGetSetOutsideModelRule.ts -------------------------------------------------------------------------------- /src/noBannedTermsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noBannedTermsRule.ts -------------------------------------------------------------------------------- /src/noConstantConditionRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noConstantConditionRule.ts -------------------------------------------------------------------------------- /src/noControlRegexRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noControlRegexRule.ts -------------------------------------------------------------------------------- /src/noCookiesRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noCookiesRule.ts -------------------------------------------------------------------------------- /src/noDeleteExpressionRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noDeleteExpressionRule.ts -------------------------------------------------------------------------------- /src/noDisableAutoSanitizationRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noDisableAutoSanitizationRule.ts -------------------------------------------------------------------------------- /src/noDocumentDomainRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noDocumentDomainRule.ts -------------------------------------------------------------------------------- /src/noDocumentWriteRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noDocumentWriteRule.ts -------------------------------------------------------------------------------- /src/noDuplicateCaseRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noDuplicateCaseRule.ts -------------------------------------------------------------------------------- /src/noDuplicateParameterNamesRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noDuplicateParameterNamesRule.ts -------------------------------------------------------------------------------- /src/noEmptyInterfacesRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noEmptyInterfacesRule.ts -------------------------------------------------------------------------------- /src/noEmptyLineAfterOpeningBraceRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noEmptyLineAfterOpeningBraceRule.ts -------------------------------------------------------------------------------- /src/noExecScriptRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noExecScriptRule.ts -------------------------------------------------------------------------------- /src/noForInRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noForInRule.ts -------------------------------------------------------------------------------- /src/noFunctionConstructorWithStringArgsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noFunctionConstructorWithStringArgsRule.ts -------------------------------------------------------------------------------- /src/noFunctionExpressionRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noFunctionExpressionRule.ts -------------------------------------------------------------------------------- /src/noHttpStringRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noHttpStringRule.ts -------------------------------------------------------------------------------- /src/noIncrementDecrementRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noIncrementDecrementRule.ts -------------------------------------------------------------------------------- /src/noInnerHtmlRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noInnerHtmlRule.ts -------------------------------------------------------------------------------- /src/noInvalidRegexpRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noInvalidRegexpRule.ts -------------------------------------------------------------------------------- /src/noJqueryRawElementsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noJqueryRawElementsRule.ts -------------------------------------------------------------------------------- /src/noMissingVisibilityModifiersRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noMissingVisibilityModifiersRule.ts -------------------------------------------------------------------------------- /src/noMultilineStringRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noMultilineStringRule.ts -------------------------------------------------------------------------------- /src/noMultipleVarDeclRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noMultipleVarDeclRule.ts -------------------------------------------------------------------------------- /src/noOctalLiteralRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noOctalLiteralRule.ts -------------------------------------------------------------------------------- /src/noRegexSpacesRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noRegexSpacesRule.ts -------------------------------------------------------------------------------- /src/noRelativeImportsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noRelativeImportsRule.ts -------------------------------------------------------------------------------- /src/noReservedKeywordsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noReservedKeywordsRule.ts -------------------------------------------------------------------------------- /src/noSingleLineBlockCommentRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noSingleLineBlockCommentRule.ts -------------------------------------------------------------------------------- /src/noStatelessClassRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noStatelessClassRule.ts -------------------------------------------------------------------------------- /src/noStringBasedSetImmediateRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noStringBasedSetImmediateRule.ts -------------------------------------------------------------------------------- /src/noStringBasedSetIntervalRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noStringBasedSetIntervalRule.ts -------------------------------------------------------------------------------- /src/noStringBasedSetTimeoutRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noStringBasedSetTimeoutRule.ts -------------------------------------------------------------------------------- /src/noSuspiciousCommentRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noSuspiciousCommentRule.ts -------------------------------------------------------------------------------- /src/noTypeofUndefinedRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noTypeofUndefinedRule.ts -------------------------------------------------------------------------------- /src/noUnexternalizedStringsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noUnexternalizedStringsRule.ts -------------------------------------------------------------------------------- /src/noUnnecessaryBindRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noUnnecessaryBindRule.ts -------------------------------------------------------------------------------- /src/noUnnecessaryFieldInitializationRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noUnnecessaryFieldInitializationRule.ts -------------------------------------------------------------------------------- /src/noUnnecessaryLocalVariableRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noUnnecessaryLocalVariableRule.ts -------------------------------------------------------------------------------- /src/noUnnecessaryOverrideRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noUnnecessaryOverrideRule.ts -------------------------------------------------------------------------------- /src/noUnnecessarySemicolonsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noUnnecessarySemicolonsRule.ts -------------------------------------------------------------------------------- /src/noUnsupportedBrowserCodeRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noUnsupportedBrowserCodeRule.ts -------------------------------------------------------------------------------- /src/noUselessFilesRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noUselessFilesRule.ts -------------------------------------------------------------------------------- /src/noVarSelfRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noVarSelfRule.ts -------------------------------------------------------------------------------- /src/noWithStatementRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/noWithStatementRule.ts -------------------------------------------------------------------------------- /src/nonLiteralFsPathRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/nonLiteralFsPathRule.ts -------------------------------------------------------------------------------- /src/nonLiteralRequireRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/nonLiteralRequireRule.ts -------------------------------------------------------------------------------- /src/possibleTimingAttackRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/possibleTimingAttackRule.ts -------------------------------------------------------------------------------- /src/preferArrayLiteralRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/preferArrayLiteralRule.ts -------------------------------------------------------------------------------- /src/preferTypeCastRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/preferTypeCastRule.ts -------------------------------------------------------------------------------- /src/promiseMustCompleteRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/promiseMustCompleteRule.ts -------------------------------------------------------------------------------- /src/reactA11yAccessibleHeadingsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yAccessibleHeadingsRule.ts -------------------------------------------------------------------------------- /src/reactA11yAnchorsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yAnchorsRule.ts -------------------------------------------------------------------------------- /src/reactA11yAriaUnsupportedElementsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yAriaUnsupportedElementsRule.ts -------------------------------------------------------------------------------- /src/reactA11yEventHasRoleRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yEventHasRoleRule.ts -------------------------------------------------------------------------------- /src/reactA11yIframesRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yIframesRule.ts -------------------------------------------------------------------------------- /src/reactA11yImageButtonHasAltRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yImageButtonHasAltRule.ts -------------------------------------------------------------------------------- /src/reactA11yImgHasAltRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yImgHasAltRule.ts -------------------------------------------------------------------------------- /src/reactA11yInputElementsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yInputElementsRule.ts -------------------------------------------------------------------------------- /src/reactA11yLangRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yLangRule.ts -------------------------------------------------------------------------------- /src/reactA11yMediaCaptionsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yMediaCaptionsRule.ts -------------------------------------------------------------------------------- /src/reactA11yMetaRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yMetaRule.ts -------------------------------------------------------------------------------- /src/reactA11yMouseEventHasKeyEventRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yMouseEventHasKeyEventRule.ts -------------------------------------------------------------------------------- /src/reactA11yNoOnchangeRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yNoOnchangeRule.ts -------------------------------------------------------------------------------- /src/reactA11yPropsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yPropsRule.ts -------------------------------------------------------------------------------- /src/reactA11yProptypesRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yProptypesRule.ts -------------------------------------------------------------------------------- /src/reactA11yRequiredRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yRequiredRule.ts -------------------------------------------------------------------------------- /src/reactA11yRoleHasRequiredAriaPropsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yRoleHasRequiredAriaPropsRule.ts -------------------------------------------------------------------------------- /src/reactA11yRoleRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yRoleRule.ts -------------------------------------------------------------------------------- /src/reactA11yRoleSupportsAriaPropsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yRoleSupportsAriaPropsRule.ts -------------------------------------------------------------------------------- /src/reactA11yTabindexNoPositiveRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yTabindexNoPositiveRule.ts -------------------------------------------------------------------------------- /src/reactA11yTitlesRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactA11yTitlesRule.ts -------------------------------------------------------------------------------- /src/reactAnchorBlankNoopenerRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactAnchorBlankNoopenerRule.ts -------------------------------------------------------------------------------- /src/reactIframeMissingSandboxRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactIframeMissingSandboxRule.ts -------------------------------------------------------------------------------- /src/reactNoDangerousHtmlRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactNoDangerousHtmlRule.ts -------------------------------------------------------------------------------- /src/reactThisBindingIssueRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactThisBindingIssueRule.ts -------------------------------------------------------------------------------- /src/reactTsxCurlySpacingRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactTsxCurlySpacingRule.ts -------------------------------------------------------------------------------- /src/reactUnusedPropsAndStateRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/reactUnusedPropsAndStateRule.ts -------------------------------------------------------------------------------- /src/tests/AstUtilsTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/AstUtilsTests.ts -------------------------------------------------------------------------------- /src/tests/ExportNameRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ExportNameRuleTests.ts -------------------------------------------------------------------------------- /src/tests/FixNoRequireImportsFormatterTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/FixNoRequireImportsFormatterTests.ts -------------------------------------------------------------------------------- /src/tests/FixNoVarKeywordFormatterTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/FixNoVarKeywordFormatterTests.ts -------------------------------------------------------------------------------- /src/tests/FunctionNameRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/FunctionNameRuleTests.ts -------------------------------------------------------------------------------- /src/tests/GetImplicitRoleTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/GetImplicitRoleTest.ts -------------------------------------------------------------------------------- /src/tests/ImportNameRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ImportNameRuleTests.ts -------------------------------------------------------------------------------- /src/tests/InformativeDocsRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/InformativeDocsRuleTests.ts -------------------------------------------------------------------------------- /src/tests/InsecureRandomRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/InsecureRandomRuleTests.ts -------------------------------------------------------------------------------- /src/tests/MaxFuncBodyLengthRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/MaxFuncBodyLengthRuleTests.ts -------------------------------------------------------------------------------- /src/tests/MissingJsdocRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/MissingJsdocRuleTests.ts -------------------------------------------------------------------------------- /src/tests/MissingOptionalAnnotationTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/MissingOptionalAnnotationTests.ts -------------------------------------------------------------------------------- /src/tests/MochaAvoidOnlyRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/MochaAvoidOnlyRuleTests.ts -------------------------------------------------------------------------------- /src/tests/MochaNoSideEffectCodeRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/MochaNoSideEffectCodeRuleTests.ts -------------------------------------------------------------------------------- /src/tests/MochaUnneededDoneRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/MochaUnneededDoneRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoBackboneGetSetOutsideModelRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoBackboneGetSetOutsideModelRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoBannedTermsTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoBannedTermsTests.ts -------------------------------------------------------------------------------- /src/tests/NoConstantConditionRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoConstantConditionRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoControlRegexRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoControlRegexRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoCookiesTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoCookiesTests.ts -------------------------------------------------------------------------------- /src/tests/NoDeleteExpressionTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoDeleteExpressionTests.ts -------------------------------------------------------------------------------- /src/tests/NoDisableAutoSanitizationTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoDisableAutoSanitizationTests.ts -------------------------------------------------------------------------------- /src/tests/NoDocumentDomainRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoDocumentDomainRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoDocumentWriteTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoDocumentWriteTests.ts -------------------------------------------------------------------------------- /src/tests/NoDuplicateCaseRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoDuplicateCaseRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoDuplicateParameterNamesTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoDuplicateParameterNamesTests.ts -------------------------------------------------------------------------------- /src/tests/NoEmptyInterfacesRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoEmptyInterfacesRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoEmptyLineAfterOpeningBraceRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoEmptyLineAfterOpeningBraceRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoExecScriptTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoExecScriptTests.ts -------------------------------------------------------------------------------- /src/tests/NoForInRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoForInRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoFunctionConstructorWithStringArgsTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoFunctionConstructorWithStringArgsTests.ts -------------------------------------------------------------------------------- /src/tests/NoFunctionExpressionRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoFunctionExpressionRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoHttpStringRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoHttpStringRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoIncrementDecrementTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoIncrementDecrementTests.ts -------------------------------------------------------------------------------- /src/tests/NoInnerHtmlRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoInnerHtmlRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoInvalidRegexpRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoInvalidRegexpRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoJqueryRawElementsRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoJqueryRawElementsRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoMissingVisibilityModifiersRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoMissingVisibilityModifiersRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoMultilineStringTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoMultilineStringTests.ts -------------------------------------------------------------------------------- /src/tests/NoMultipleVarDeclRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoMultipleVarDeclRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoOctalLiteralTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoOctalLiteralTests.ts -------------------------------------------------------------------------------- /src/tests/NoRegexSpacesRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoRegexSpacesRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoReservedKeywordsTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoReservedKeywordsTests.ts -------------------------------------------------------------------------------- /src/tests/NoSingleLineBlockCommentRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoSingleLineBlockCommentRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoStatelessClassRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoStatelessClassRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoStringBasedSetImmediateTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoStringBasedSetImmediateTests.ts -------------------------------------------------------------------------------- /src/tests/NoStringBasedSetIntervalTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoStringBasedSetIntervalTests.ts -------------------------------------------------------------------------------- /src/tests/NoStringBasedSetTimeoutTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoStringBasedSetTimeoutTests.ts -------------------------------------------------------------------------------- /src/tests/NoSuspiciousCommentRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoSuspiciousCommentRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoTypeofUndefinedRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoTypeofUndefinedRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoUnexternalizedStringsRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoUnexternalizedStringsRuleTests.ts -------------------------------------------------------------------------------- /src/tests/NoUnnecessarySemicolonsTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoUnnecessarySemicolonsTests.ts -------------------------------------------------------------------------------- /src/tests/NoUnsupportedBrowserCodeRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/NoUnsupportedBrowserCodeRuleTests.ts -------------------------------------------------------------------------------- /src/tests/PreferTypeCastRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/PreferTypeCastRuleTests.ts -------------------------------------------------------------------------------- /src/tests/ReactA11yAnchorsRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactA11yAnchorsRuleTests.ts -------------------------------------------------------------------------------- /src/tests/ReactA11yAriaUnsupportedElementsRuleTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactA11yAriaUnsupportedElementsRuleTest.ts -------------------------------------------------------------------------------- /src/tests/ReactA11yEventHasRoleRuleTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactA11yEventHasRoleRuleTest.ts -------------------------------------------------------------------------------- /src/tests/ReactA11yImageButtonHasAltRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactA11yImageButtonHasAltRuleTests.ts -------------------------------------------------------------------------------- /src/tests/ReactA11yInputElementsRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactA11yInputElementsRuleTests.ts -------------------------------------------------------------------------------- /src/tests/ReactA11yLangRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactA11yLangRuleTests.ts -------------------------------------------------------------------------------- /src/tests/ReactA11yMetaRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactA11yMetaRuleTests.ts -------------------------------------------------------------------------------- /src/tests/ReactA11yNoOnchangeRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactA11yNoOnchangeRuleTests.ts -------------------------------------------------------------------------------- /src/tests/ReactA11yProptypesRuleTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactA11yProptypesRuleTest.ts -------------------------------------------------------------------------------- /src/tests/ReactA11yRequiredRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactA11yRequiredRuleTests.ts -------------------------------------------------------------------------------- /src/tests/ReactA11yTitlesRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactA11yTitlesRuleTests.ts -------------------------------------------------------------------------------- /src/tests/ReactAnchorBlankNoopenerRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactAnchorBlankNoopenerRuleTests.ts -------------------------------------------------------------------------------- /src/tests/ReactIframeMissingSandboxRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactIframeMissingSandboxRuleTests.ts -------------------------------------------------------------------------------- /src/tests/ReactNoDangerousHtmlRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactNoDangerousHtmlRuleTests.ts -------------------------------------------------------------------------------- /src/tests/ReactThisBindingIssueRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/ReactThisBindingIssueRuleTests.ts -------------------------------------------------------------------------------- /src/tests/TestHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/TestHelper.ts -------------------------------------------------------------------------------- /src/tests/TypeGuardTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/TypeGuardTests.ts -------------------------------------------------------------------------------- /src/tests/UtilsTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/UtilsTests.ts -------------------------------------------------------------------------------- /src/tests/jqueryDeferredMustCompleteRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/jqueryDeferredMustCompleteRuleTests.ts -------------------------------------------------------------------------------- /src/tests/noUnnecessaryFieldInitializationRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/noUnnecessaryFieldInitializationRuleTests.ts -------------------------------------------------------------------------------- /src/tests/reactA11yAccessibleHeadingsRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/reactA11yAccessibleHeadingsRuleTests.ts -------------------------------------------------------------------------------- /src/tests/reactA11yImgHasAltRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/reactA11yImgHasAltRuleTests.ts -------------------------------------------------------------------------------- /src/tests/reactA11yPropsRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/reactA11yPropsRuleTests.ts -------------------------------------------------------------------------------- /src/tests/reactA11yRoleHasRequiredAriaPropsRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/reactA11yRoleHasRequiredAriaPropsRuleTests.ts -------------------------------------------------------------------------------- /src/tests/reactA11yRoleRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/reactA11yRoleRuleTests.ts -------------------------------------------------------------------------------- /src/tests/reactA11yRoleSupportsAriaPropsRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/reactA11yRoleSupportsAriaPropsRuleTests.ts -------------------------------------------------------------------------------- /src/tests/reactA11yTabindexNoPositiveRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/reactA11yTabindexNoPositiveRuleTests.ts -------------------------------------------------------------------------------- /src/tests/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/tslint.json -------------------------------------------------------------------------------- /src/tests/useSimpleAttributeRuleTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/tests/useSimpleAttributeRuleTests.ts -------------------------------------------------------------------------------- /src/underscoreConsistentInvocationRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/underscoreConsistentInvocationRule.ts -------------------------------------------------------------------------------- /src/useNamedParameterRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/useNamedParameterRule.ts -------------------------------------------------------------------------------- /src/useSimpleAttributesRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/useSimpleAttributesRule.ts -------------------------------------------------------------------------------- /src/utils/AstUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/AstUtils.ts -------------------------------------------------------------------------------- /src/utils/BannedTermWalker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/BannedTermWalker.ts -------------------------------------------------------------------------------- /src/utils/BaseFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/BaseFormatter.ts -------------------------------------------------------------------------------- /src/utils/ChaiUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/ChaiUtils.ts -------------------------------------------------------------------------------- /src/utils/ExtendedMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/ExtendedMetadata.ts -------------------------------------------------------------------------------- /src/utils/JsxAttribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/JsxAttribute.ts -------------------------------------------------------------------------------- /src/utils/MochaUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/MochaUtils.ts -------------------------------------------------------------------------------- /src/utils/NodeDocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/NodeDocs.ts -------------------------------------------------------------------------------- /src/utils/Scope.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/Scope.ts -------------------------------------------------------------------------------- /src/utils/TypeGuard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/TypeGuard.ts -------------------------------------------------------------------------------- /src/utils/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/Utils.ts -------------------------------------------------------------------------------- /src/utils/attributes/IAria.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/attributes/IAria.ts -------------------------------------------------------------------------------- /src/utils/attributes/IDom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/attributes/IDom.ts -------------------------------------------------------------------------------- /src/utils/attributes/IRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/attributes/IRole.ts -------------------------------------------------------------------------------- /src/utils/attributes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/attributes/README.md -------------------------------------------------------------------------------- /src/utils/attributes/ariaSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/attributes/ariaSchema.json -------------------------------------------------------------------------------- /src/utils/attributes/domSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/attributes/domSchema.json -------------------------------------------------------------------------------- /src/utils/attributes/roleSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/attributes/roleSchema.json -------------------------------------------------------------------------------- /src/utils/createNoStringParameterToFunctionWalker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/createNoStringParameterToFunctionWalker.ts -------------------------------------------------------------------------------- /src/utils/getImplicitRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/getImplicitRole.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/README.md -------------------------------------------------------------------------------- /src/utils/implicitRoles/a.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/a.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/area.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/area.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/article.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/article.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/aside.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/aside.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/body.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/button.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/button.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/datalist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/datalist.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/dd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/dd.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/details.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/details.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/dialog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/dialog.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/dl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/dl.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/dt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/dt.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/footer.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/form.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/h1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/h1.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/h2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/h2.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/h3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/h3.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/h4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/h4.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/h5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/h5.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/h6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/h6.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/header.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/hr.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/img.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/img.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/index.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/input.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/li.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/li.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/link.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/main.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/math.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/menu.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/menuitem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/menuitem.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/meter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/meter.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/nav.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/nav.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/ol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/ol.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/optgroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/optgroup.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/option.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/option.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/output.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/progress.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/section.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/select.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/summary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/summary.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/table.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/tbody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/tbody.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/td.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/td.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/textarea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/textarea.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/tfoot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/tfoot.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/th.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/th.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/thead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/thead.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/tr.ts -------------------------------------------------------------------------------- /src/utils/implicitRoles/ul.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/utils/implicitRoles/ul.ts -------------------------------------------------------------------------------- /src/validTypeofRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/validTypeofRule.ts -------------------------------------------------------------------------------- /src/voidZeroRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/src/voidZeroRule.ts -------------------------------------------------------------------------------- /test-data/ExportName/ExportNameRuleFailingTestInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ExportName/ExportNameRuleFailingTestInput.ts -------------------------------------------------------------------------------- /test-data/ExportName/ExportNameRuleFailingTestInput2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ExportName/ExportNameRuleFailingTestInput2.tsx -------------------------------------------------------------------------------- /test-data/ExportName/ExportNameRulePassingTestInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ExportName/ExportNameRulePassingTestInput.ts -------------------------------------------------------------------------------- /test-data/ExportName/ExportNameRulePassingTestInput2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ExportName/ExportNameRulePassingTestInput2.tsx -------------------------------------------------------------------------------- /test-data/ExportName/PrefixedExpectedClassName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ExportName/PrefixedExpectedClassName.ts -------------------------------------------------------------------------------- /test-data/ExportName/export-name-rule-passing-test-input-3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ExportName/export-name-rule-passing-test-input-3.tsx -------------------------------------------------------------------------------- /test-data/ExportName/export_name_rule_passing_test_input_4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ExportName/export_name_rule_passing_test_input_4.tsx -------------------------------------------------------------------------------- /test-data/NoCookies/NoCookiesFailingTestInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoCookies/NoCookiesFailingTestInput.ts -------------------------------------------------------------------------------- /test-data/NoCookies/NoCookiesPassingTestInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoCookies/NoCookiesPassingTestInput.ts -------------------------------------------------------------------------------- /test-data/NoCookies/NoCookiesTestInput-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoCookies/NoCookiesTestInput-error.ts -------------------------------------------------------------------------------- /test-data/NoFunctionConstructorWithStringArgsTestInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoFunctionConstructorWithStringArgsTestInput.ts -------------------------------------------------------------------------------- /test-data/NoFunctionExpressionWithInTSX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoFunctionExpressionWithInTSX.tsx -------------------------------------------------------------------------------- /test-data/NoOctalLiteral/NoOctalLiteralTestInput-passing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoOctalLiteral/NoOctalLiteralTestInput-passing.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-any.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-any.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-as.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-as.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-boolean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-boolean.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-break.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-break.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-case.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-case.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-catch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-catch.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-class.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-const.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-constructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-constructor.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-continue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-continue.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-debugger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-debugger.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-declare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-declare.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-default.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-delete.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-do.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-do.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-else.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-else.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-enum.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-export.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-extends.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-extends.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-false.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-false.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-finally.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-finally.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-for.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-for.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-from.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-from.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-function.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-get.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-if.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-if.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-implements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-implements.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-import.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-in.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-in.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-instanceof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-instanceof.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-interface.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-let.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-let.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-module.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-new.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-new.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-null.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-null.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-number.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-of.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-of.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-package.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-private.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-private.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-protected.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-protected.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-public.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-public.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-require.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-require.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-return.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-return.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-set.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-static.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-string.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-super.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-super.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-switch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-switch.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-symbol.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-this.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-this.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-throw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-throw.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-true.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-true.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-try.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-try.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-type.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-typeof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-typeof.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-var.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-var.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-void.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-void.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-while.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-while.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-with.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-with.ts -------------------------------------------------------------------------------- /test-data/NoReservedKeywords/NoReservedKeywordsTestInput-yield.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoReservedKeywords/NoReservedKeywordsTestInput-yield.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetImmediateTestInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetImmediateTestInput.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetIntervalTestInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetIntervalTestInput.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-any-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-any-functions.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-any-variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-any-variables.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-constructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-constructor.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-parameters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-parameters.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-string-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-string-functions.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-string-literals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-string-literals.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-string-variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-string-variables.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutFailingTestInput-template-strings.ts: -------------------------------------------------------------------------------- 1 | var data = 'alert(1)'; 2 | window.setTimeout(`${data}`, 200); 3 | -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-case2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-case2.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-case3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-case3.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-case4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-case4.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-error.ts: -------------------------------------------------------------------------------- 1 | setTimeout(function(): void {}.bind(this), 400); 2 | -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-error3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-error3.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-error4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-error4.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-error5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-error5.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-formerFalsePositive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-formerFalsePositive.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-functionParamFunction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-functionParamFunction.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-issue46.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-issue46.ts -------------------------------------------------------------------------------- /test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-shadowedVariables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoStringBasedSetTimeout/NoStringBasedSetTimeoutTestInput-shadowedVariables.ts -------------------------------------------------------------------------------- /test-data/NoUnnecessarySemicolonsTestInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/NoUnnecessarySemicolonsTestInput.ts -------------------------------------------------------------------------------- /test-data/PreferTypeCastRuleTests-passing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/PreferTypeCastRuleTests-passing.tsx -------------------------------------------------------------------------------- /test-data/ReactThisBinding/ReactThisBindingIssue-anon-instance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ReactThisBinding/ReactThisBindingIssue-anon-instance.tsx -------------------------------------------------------------------------------- /test-data/ReactThisBinding/ReactThisBindingIssue-doublebinding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ReactThisBinding/ReactThisBindingIssue-doublebinding.tsx -------------------------------------------------------------------------------- /test-data/ReactThisBinding/ReactThisBindingIssue-local-instance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ReactThisBinding/ReactThisBindingIssue-local-instance.tsx -------------------------------------------------------------------------------- /test-data/ReactThisBinding/ReactThisBindingIssue-passing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ReactThisBinding/ReactThisBindingIssue-passing.tsx -------------------------------------------------------------------------------- /test-data/ReactThisBinding/ReactThisBindingIssue-unbound.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ReactThisBinding/ReactThisBindingIssue-unbound.tsx -------------------------------------------------------------------------------- /test-data/ReactThisBinding/ReactThisBindingIssueWithDecorator-passing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ReactThisBinding/ReactThisBindingIssueWithDecorator-passing.tsx -------------------------------------------------------------------------------- /test-data/ReactThisBinding/ReactThisBindingIssueWithDecoratorDeclaredAfterUsage-passing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/ReactThisBinding/ReactThisBindingIssueWithDecoratorDeclaredAfterUsage-passing.tsx -------------------------------------------------------------------------------- /test-data/a11yImgHasAlt/CustomElementTests/FailingTestInputs/CustomElementHasEmptyAltValueAndNotPresentationRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yImgHasAlt/CustomElementTests/FailingTestInputs/CustomElementHasEmptyAltValueAndNotPresentationRole.tsx -------------------------------------------------------------------------------- /test-data/a11yImgHasAlt/CustomElementTests/FailingTestInputs/CustomElementHasNoAltProp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yImgHasAlt/CustomElementTests/FailingTestInputs/CustomElementHasNoAltProp.tsx -------------------------------------------------------------------------------- /test-data/a11yImgHasAlt/CustomElementTests/FailingTestInputs/CustomElementHasNonEmptyAltValueAndPresentationRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yImgHasAlt/CustomElementTests/FailingTestInputs/CustomElementHasNonEmptyAltValueAndPresentationRole.tsx -------------------------------------------------------------------------------- /test-data/a11yImgHasAlt/CustomElementTests/PassingTestInputs/CustomElementHasNonEmptyAltValueAndNotPresentationRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yImgHasAlt/CustomElementTests/PassingTestInputs/CustomElementHasNonEmptyAltValueAndNotPresentationRole.tsx -------------------------------------------------------------------------------- /test-data/a11yImgHasAlt/CustomElementTests/PassingTestInputs/ElementNeitherImgNorCustomElement.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yImgHasAlt/CustomElementTests/PassingTestInputs/ElementNeitherImgNorCustomElement.tsx -------------------------------------------------------------------------------- /test-data/a11yImgHasAlt/DefaltTests/FailingTestInputs/ImgElementHasNoAlt.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yImgHasAlt/DefaltTests/FailingTestInputs/ImgElementHasNoAlt.tsx -------------------------------------------------------------------------------- /test-data/a11yImgHasAlt/DefaltTests/FailingTestInputs/ImgElementHasNonEmptyAltValueAndPresentationRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yImgHasAlt/DefaltTests/FailingTestInputs/ImgElementHasNonEmptyAltValueAndPresentationRole.tsx -------------------------------------------------------------------------------- /test-data/a11yImgHasAlt/DefaltTests/PassingTestInputs/ElementNotImg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yImgHasAlt/DefaltTests/PassingTestInputs/ElementNotImg.tsx -------------------------------------------------------------------------------- /test-data/a11yImgHasAlt/DefaltTests/PassingTestInputs/ImgElementHasNonEmptyAltValueAndNotPresentationRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yImgHasAlt/DefaltTests/PassingTestInputs/ImgElementHasNonEmptyAltValueAndNotPresentationRole.tsx -------------------------------------------------------------------------------- /test-data/a11yImgHasAlt/DefaltTests/PassingTestInputs/ImgElementHasNonEmptyAltValueAndPresentationRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yImgHasAlt/DefaltTests/PassingTestInputs/ImgElementHasNonEmptyAltValueAndPresentationRole.tsx -------------------------------------------------------------------------------- /test-data/a11yImgHasAlt/DefaltTests/PassingTestInputs/ImgElementHasNonEmptyAltValueAndUndefinedPresentationRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yImgHasAlt/DefaltTests/PassingTestInputs/ImgElementHasNonEmptyAltValueAndUndefinedPresentationRole.tsx -------------------------------------------------------------------------------- /test-data/a11yImgHasAlt/DefaltTests/PassingTestInputs/ImgElementHasSpreadAttribute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yImgHasAlt/DefaltTests/PassingTestInputs/ImgElementHasSpreadAttribute.tsx -------------------------------------------------------------------------------- /test-data/a11yImgHasAlt/DefaltTests/PassingTestInputs/ImgElementNotLowerCase.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yImgHasAlt/DefaltTests/PassingTestInputs/ImgElementNotLowerCase.tsx -------------------------------------------------------------------------------- /test-data/a11yProps/FailingTestInputs/InvalidAriaAttributeName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProps/FailingTestInputs/InvalidAriaAttributeName.tsx -------------------------------------------------------------------------------- /test-data/a11yProps/PassingTestInputs/AttributeNotAria.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProps/PassingTestInputs/AttributeNotAria.tsx -------------------------------------------------------------------------------- /test-data/a11yProps/PassingTestInputs/CorrectAriaAttributeName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProps/PassingTestInputs/CorrectAriaAttributeName.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/FailingTestInputs/boolean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/FailingTestInputs/boolean.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/FailingTestInputs/integer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/FailingTestInputs/integer.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/FailingTestInputs/notAllowUndefined.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/FailingTestInputs/notAllowUndefined.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/FailingTestInputs/number.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/FailingTestInputs/number.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/FailingTestInputs/string.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/FailingTestInputs/string.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/FailingTestInputs/token.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/FailingTestInputs/token.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/FailingTestInputs/tokenlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/FailingTestInputs/tokenlist.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/FailingTestInputs/tristate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/FailingTestInputs/tristate.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/PassingTestInputs/allowUndefined.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/PassingTestInputs/allowUndefined.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/PassingTestInputs/boolean.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/PassingTestInputs/boolean.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/PassingTestInputs/canNotCheckUntilRunTime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/PassingTestInputs/canNotCheckUntilRunTime.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/PassingTestInputs/integer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/PassingTestInputs/integer.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/PassingTestInputs/number.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/PassingTestInputs/number.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/PassingTestInputs/string.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/PassingTestInputs/string.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/PassingTestInputs/token.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/PassingTestInputs/token.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/PassingTestInputs/tokenlist.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/PassingTestInputs/tokenlist.tsx -------------------------------------------------------------------------------- /test-data/a11yProptypes/PassingTestInputs/tristate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yProptypes/PassingTestInputs/tristate.tsx -------------------------------------------------------------------------------- /test-data/a11yRole/FailingTestInputs/AbstractRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRole/FailingTestInputs/AbstractRole.tsx -------------------------------------------------------------------------------- /test-data/a11yRole/FailingTestInputs/InvalidRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRole/FailingTestInputs/InvalidRole.tsx -------------------------------------------------------------------------------- /test-data/a11yRole/PassingTestInputs/AttributeNotRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRole/PassingTestInputs/AttributeNotRole.tsx -------------------------------------------------------------------------------- /test-data/a11yRole/PassingTestInputs/CorrectName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRole/PassingTestInputs/CorrectName.tsx -------------------------------------------------------------------------------- /test-data/a11yRole/PassingTestInputs/MultipleCorrectRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRole/PassingTestInputs/MultipleCorrectRole.tsx -------------------------------------------------------------------------------- /test-data/a11yRole/PassingTestInputs/RoleNameNotStringLiteral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRole/PassingTestInputs/RoleNameNotStringLiteral.tsx -------------------------------------------------------------------------------- /test-data/a11yRoleHasRequiredAriaProps/FailingTestInputs/ExplicitRoleMissingRequiredProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRoleHasRequiredAriaProps/FailingTestInputs/ExplicitRoleMissingRequiredProps.tsx -------------------------------------------------------------------------------- /test-data/a11yRoleHasRequiredAriaProps/PassingTestInputs/AttributeHasNoValidRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRoleHasRequiredAriaProps/PassingTestInputs/AttributeHasNoValidRole.tsx -------------------------------------------------------------------------------- /test-data/a11yRoleHasRequiredAriaProps/PassingTestInputs/RoleHasNoRequiredProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRoleHasRequiredAriaProps/PassingTestInputs/RoleHasNoRequiredProps.tsx -------------------------------------------------------------------------------- /test-data/a11yRoleHasRequiredAriaProps/PassingTestInputs/RoleValueAndAttributesHaveRequiredProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRoleHasRequiredAriaProps/PassingTestInputs/RoleValueAndAttributesHaveRequiredProps.tsx -------------------------------------------------------------------------------- /test-data/a11yRoleHasRequiredAriaProps/PassingTestInputs/RoleValueNotLiteralString.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRoleHasRequiredAriaProps/PassingTestInputs/RoleValueNotLiteralString.tsx -------------------------------------------------------------------------------- /test-data/a11yRoleSupportsAriaProps/FailingTestInputs/ElementHasNotSupportedAriaPropsForEmptyRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRoleSupportsAriaProps/FailingTestInputs/ElementHasNotSupportedAriaPropsForEmptyRole.tsx -------------------------------------------------------------------------------- /test-data/a11yRoleSupportsAriaProps/FailingTestInputs/ElementHasNotSupportedAriaPropsForExplicitRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRoleSupportsAriaProps/FailingTestInputs/ElementHasNotSupportedAriaPropsForExplicitRole.tsx -------------------------------------------------------------------------------- /test-data/a11yRoleSupportsAriaProps/FailingTestInputs/ElementHasNotSupportedAriaPropsForImplicitRole.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRoleSupportsAriaProps/FailingTestInputs/ElementHasNotSupportedAriaPropsForImplicitRole.tsx -------------------------------------------------------------------------------- /test-data/a11yRoleSupportsAriaProps/PassingTestInputs/CustomElementSupportsAllAriaProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRoleSupportsAriaProps/PassingTestInputs/CustomElementSupportsAllAriaProps.tsx -------------------------------------------------------------------------------- /test-data/a11yRoleSupportsAriaProps/PassingTestInputs/ExplicitRoleSupportsAllAriaProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRoleSupportsAriaProps/PassingTestInputs/ExplicitRoleSupportsAllAriaProps.tsx -------------------------------------------------------------------------------- /test-data/a11yRoleSupportsAriaProps/PassingTestInputs/ImplicitRoleSupportsAllAriaProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRoleSupportsAriaProps/PassingTestInputs/ImplicitRoleSupportsAllAriaProps.tsx -------------------------------------------------------------------------------- /test-data/a11yRoleSupportsAriaProps/PassingTestInputs/UnretrievableRoleSupportsAllAriaProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yRoleSupportsAriaProps/PassingTestInputs/UnretrievableRoleSupportsAllAriaProps.tsx -------------------------------------------------------------------------------- /test-data/a11yTabindexNoPositive/FailingTestInputs/TabindexValueNotNumericLiteral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yTabindexNoPositive/FailingTestInputs/TabindexValueNotNumericLiteral.tsx -------------------------------------------------------------------------------- /test-data/a11yTabindexNoPositive/PassingTestInputs/AttributeNotTabindex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yTabindexNoPositive/PassingTestInputs/AttributeNotTabindex.tsx -------------------------------------------------------------------------------- /test-data/a11yTabindexNoPositive/PassingTestInputs/CorrectTabindexValue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yTabindexNoPositive/PassingTestInputs/CorrectTabindexValue.tsx -------------------------------------------------------------------------------- /test-data/a11yTabindexNoPositive/PassingTestInputs/TabindexValueNotLiteral.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/a11yTabindexNoPositive/PassingTestInputs/TabindexValueNotLiteral.tsx -------------------------------------------------------------------------------- /test-data/references.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/references.ts -------------------------------------------------------------------------------- /test-data/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/test-data/tsconfig.json -------------------------------------------------------------------------------- /tests/chai-prefer-contains-to-index-of/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/chai-prefer-contains-to-index-of/test.ts.lint -------------------------------------------------------------------------------- /tests/chai-prefer-contains-to-index-of/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/chai-prefer-contains-to-index-of/tslint.json -------------------------------------------------------------------------------- /tests/chai-vague-errors/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/chai-vague-errors/test.ts.lint -------------------------------------------------------------------------------- /tests/chai-vague-errors/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/chai-vague-errors/tslint.json -------------------------------------------------------------------------------- /tests/detect-child-process/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/detect-child-process/test.ts.lint -------------------------------------------------------------------------------- /tests/detect-child-process/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/detect-child-process/tslint.json -------------------------------------------------------------------------------- /tests/export-name/defaults/re-export-external.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/export-name/defaults/re-export-external.ts.lint -------------------------------------------------------------------------------- /tests/export-name/defaults/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/export-name/defaults/tslint.json -------------------------------------------------------------------------------- /tests/no-relative-imports/allow-siblings/test.js.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-relative-imports/allow-siblings/test.js.lint -------------------------------------------------------------------------------- /tests/no-relative-imports/allow-siblings/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-relative-imports/allow-siblings/test.ts.lint -------------------------------------------------------------------------------- /tests/no-relative-imports/allow-siblings/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-relative-imports/allow-siblings/tslint.json -------------------------------------------------------------------------------- /tests/no-relative-imports/default/test.js.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-relative-imports/default/test.js.lint -------------------------------------------------------------------------------- /tests/no-relative-imports/default/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-relative-imports/default/test.ts.lint -------------------------------------------------------------------------------- /tests/no-relative-imports/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-relative-imports/default/tslint.json -------------------------------------------------------------------------------- /tests/no-unnecessary-bind/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-unnecessary-bind/test.ts.lint -------------------------------------------------------------------------------- /tests/no-unnecessary-bind/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-unnecessary-bind/tslint.json -------------------------------------------------------------------------------- /tests/no-unnecessary-field-initialization/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-unnecessary-field-initialization/test.ts.lint -------------------------------------------------------------------------------- /tests/no-unnecessary-field-initialization/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-unnecessary-field-initialization/tslint.json -------------------------------------------------------------------------------- /tests/no-unnecessary-local-variable/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-unnecessary-local-variable/test.ts.lint -------------------------------------------------------------------------------- /tests/no-unnecessary-local-variable/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-unnecessary-local-variable/tslint.json -------------------------------------------------------------------------------- /tests/no-unnecessary-override/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-unnecessary-override/test.ts.lint -------------------------------------------------------------------------------- /tests/no-unnecessary-override/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-unnecessary-override/tslint.json -------------------------------------------------------------------------------- /tests/no-unsupported-browser-code/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-unsupported-browser-code/test.ts.lint -------------------------------------------------------------------------------- /tests/no-unsupported-browser-code/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-unsupported-browser-code/tslint.json -------------------------------------------------------------------------------- /tests/no-useless-files/code/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-useless-files/code/test.ts.lint -------------------------------------------------------------------------------- /tests/no-useless-files/code/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-useless-files/code/tslint.json -------------------------------------------------------------------------------- /tests/no-useless-files/empty/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-useless-files/empty/test.ts.lint -------------------------------------------------------------------------------- /tests/no-useless-files/empty/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-useless-files/empty/tslint.json -------------------------------------------------------------------------------- /tests/no-useless-files/mixed comments/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-useless-files/mixed comments/test.ts.lint -------------------------------------------------------------------------------- /tests/no-useless-files/mixed comments/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-useless-files/mixed comments/tslint.json -------------------------------------------------------------------------------- /tests/no-useless-files/multi line comments/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-useless-files/multi line comments/test.ts.lint -------------------------------------------------------------------------------- /tests/no-useless-files/multi line comments/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-useless-files/multi line comments/tslint.json -------------------------------------------------------------------------------- /tests/no-useless-files/single line comments/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-useless-files/single line comments/test.ts.lint -------------------------------------------------------------------------------- /tests/no-useless-files/single line comments/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-useless-files/single line comments/tslint.json -------------------------------------------------------------------------------- /tests/no-var-self/default/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-var-self/default/test.ts.lint -------------------------------------------------------------------------------- /tests/no-var-self/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-var-self/default/tslint.json -------------------------------------------------------------------------------- /tests/no-var-self/negation parameter/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-var-self/negation parameter/test.ts.lint -------------------------------------------------------------------------------- /tests/no-var-self/negation parameter/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-var-self/negation parameter/tslint.json -------------------------------------------------------------------------------- /tests/no-var-self/parameter/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-var-self/parameter/test.ts.lint -------------------------------------------------------------------------------- /tests/no-var-self/parameter/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-var-self/parameter/tslint.json -------------------------------------------------------------------------------- /tests/no-with-statement/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-with-statement/test.ts.lint -------------------------------------------------------------------------------- /tests/no-with-statement/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/no-with-statement/tslint.json -------------------------------------------------------------------------------- /tests/non-literal-fs-path/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/non-literal-fs-path/test.ts.lint -------------------------------------------------------------------------------- /tests/non-literal-fs-path/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/non-literal-fs-path/tslint.json -------------------------------------------------------------------------------- /tests/non-literal-require/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/non-literal-require/test.ts.lint -------------------------------------------------------------------------------- /tests/non-literal-require/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/non-literal-require/tslint.json -------------------------------------------------------------------------------- /tests/possible-timing-attack/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/possible-timing-attack/test.ts.lint -------------------------------------------------------------------------------- /tests/possible-timing-attack/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/possible-timing-attack/tslint.json -------------------------------------------------------------------------------- /tests/prefer-array-literal/allow-size-argument-typed/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/prefer-array-literal/allow-size-argument-typed/test.ts.lint -------------------------------------------------------------------------------- /tests/prefer-array-literal/allow-size-argument-typed/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/prefer-array-literal/allow-size-argument-typed/tsconfig.json -------------------------------------------------------------------------------- /tests/prefer-array-literal/allow-size-argument-typed/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/prefer-array-literal/allow-size-argument-typed/tslint.json -------------------------------------------------------------------------------- /tests/prefer-array-literal/allow-size-argument/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/prefer-array-literal/allow-size-argument/test.ts.lint -------------------------------------------------------------------------------- /tests/prefer-array-literal/allow-size-argument/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/prefer-array-literal/allow-size-argument/tslint.json -------------------------------------------------------------------------------- /tests/prefer-array-literal/allow-type-parameters/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/prefer-array-literal/allow-type-parameters/test.ts.lint -------------------------------------------------------------------------------- /tests/prefer-array-literal/allow-type-parameters/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/prefer-array-literal/allow-type-parameters/tslint.json -------------------------------------------------------------------------------- /tests/prefer-array-literal/default/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/prefer-array-literal/default/test.ts.lint -------------------------------------------------------------------------------- /tests/prefer-array-literal/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/prefer-array-literal/default/tslint.json -------------------------------------------------------------------------------- /tests/promise-must-complete/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/promise-must-complete/test.ts.lint -------------------------------------------------------------------------------- /tests/promise-must-complete/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/promise-must-complete/tslint.json -------------------------------------------------------------------------------- /tests/react-a11y-iframes/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-a11y-iframes/test.tsx.lint -------------------------------------------------------------------------------- /tests/react-a11y-iframes/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-a11y-iframes/tslint.json -------------------------------------------------------------------------------- /tests/react-a11y-media-captions/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-a11y-media-captions/test.tsx.lint -------------------------------------------------------------------------------- /tests/react-a11y-media-captions/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-a11y-media-captions/tslint.json -------------------------------------------------------------------------------- /tests/react-a11y-mouse-event-has-key-event/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-a11y-mouse-event-has-key-event/test.tsx.lint -------------------------------------------------------------------------------- /tests/react-a11y-mouse-event-has-key-event/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-a11y-mouse-event-has-key-event/tslint.json -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/custom-names/reports-missing-props-and-state-with-custom-name.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/custom-names/reports-missing-props-and-state-with-custom-name.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/custom-names/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/custom-names/tslint.json -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-all-props-and-state-used.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-all-props-and-state-used.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-functions-are-used.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-functions-are-used.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-interfaces-defined-at-end.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-interfaces-defined-at-end.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-props-and-state-escape-the-class-or-function.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-props-and-state-escape-the-class-or-function.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-props-escapes-from-componentdidupdate.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-props-escapes-from-componentdidupdate.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-props-escapes-from-componentwillreceiveprops.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-props-escapes-from-componentwillreceiveprops.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-props-escapes-from-componentwillupdate.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-props-escapes-from-componentwillupdate.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-props-escapes-from-shouldcomponentupdate.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-props-escapes-from-shouldcomponentupdate.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-props-referenced-from-lifecycle-method.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-props-referenced-from-lifecycle-method.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-props-referenced-in-constructor.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-props-referenced-in-constructor.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-state-escapes-from-componentdidupdate.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-state-escapes-from-componentdidupdate.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-state-escapes-from-componentwillupdate.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-state-escapes-from-componentwillupdate.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-state-escapes-from-shouldcomponentupdate.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-state-escapes-from-shouldcomponentupdate.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/passes-when-state-referenced-from-lifecycle-method.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/passes-when-state-referenced-from-lifecycle-method.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/reports-missing-functions.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/reports-missing-functions.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/reports-missing-props-and-state.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/reports-missing-props-and-state.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/reports-when-used-in-ternary.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/reports-when-used-in-ternary.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/class-components/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/class-components/default/tslint.json -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/arrow-functions/passes-for-object-binding.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/arrow-functions/passes-for-object-binding.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/arrow-functions/reports-for-object-binding.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/arrow-functions/reports-for-object-binding.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/arrow-functions/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/arrow-functions/tslint.json -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/function-components/passes-for-prop-alias-in-type-reference.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/function-components/passes-for-prop-alias-in-type-reference.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/function-components/passes-for-prop-in-type-reference.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/function-components/passes-for-prop-in-type-reference.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/function-components/reports-for-explicit-import-shorthand.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/function-components/reports-for-explicit-import-shorthand.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/function-components/reports-for-explicit-import.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/function-components/reports-for-explicit-import.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/function-components/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/function-components/tslint.json -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/functions/passes-for-example-from-issue-339.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/functions/passes-for-example-from-issue-339.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/functions/passes-for-function-when-prop-in-type-reference.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/functions/passes-for-function-when-prop-in-type-reference.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/functions/passes-for-object-binding.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/functions/passes-for-object-binding.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/functions/passes-for-prop-alias-in-type-reference.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/functions/passes-for-prop-alias-in-type-reference.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/functions/reports-for-object-binding.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/functions/reports-for-object-binding.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/functions/reports-for-prop-missing-in-type-reference.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/functions/reports-for-prop-missing-in-type-reference.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/functions/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/functions/tslint.json -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/passes-for-all-props-used-in-jsx-return-value.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/passes-for-all-props-used-in-jsx-return-value.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/passes-for-jsx-assigned-to-variable.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/passes-for-jsx-assigned-to-variable.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/passes-for-prop-alias-in-type-literal.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/passes-for-prop-alias-in-type-literal.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/passes-for-prop-alias-in-type-reference.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/passes-for-prop-alias-in-type-reference.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/passes-for-prop-in-type-literal.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/passes-for-prop-in-type-literal.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/passes-for-prop-in-type-reference.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/passes-for-prop-in-type-reference.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/reports-for-explicit-import-shorthand.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/reports-for-explicit-import-shorthand.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/reports-for-explicit-import.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/reports-for-explicit-import.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/reports-for-prop-alias-in-type-literal.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/reports-for-prop-alias-in-type-literal.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/reports-for-prop-alias-in-type-reference.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/reports-for-prop-alias-in-type-reference.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/reports-for-prop-in-complex-statement.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/reports-for-prop-in-complex-statement.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/reports-for-prop-in-object-binding-and-complex-statement.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/reports-for-prop-in-object-binding-and-complex-statement.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/reports-for-prop-in-type-literal.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/reports-for-prop-in-type-literal.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/reports-for-prop-in-type-reference.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/reports-for-prop-in-type-reference.tsx.lint -------------------------------------------------------------------------------- /tests/react-unused-props-and-state/functions/stateless-functions/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/react-unused-props-and-state/functions/stateless-functions/tslint.json -------------------------------------------------------------------------------- /tests/underscore-consistent-invocation/default/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/underscore-consistent-invocation/default/test.ts.lint -------------------------------------------------------------------------------- /tests/underscore-consistent-invocation/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/underscore-consistent-invocation/default/tslint.json -------------------------------------------------------------------------------- /tests/underscore-consistent-invocation/static/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/underscore-consistent-invocation/static/test.ts.lint -------------------------------------------------------------------------------- /tests/underscore-consistent-invocation/static/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/underscore-consistent-invocation/static/tslint.json -------------------------------------------------------------------------------- /tests/use-named-parameter/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/use-named-parameter/test.ts.lint -------------------------------------------------------------------------------- /tests/use-named-parameter/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/use-named-parameter/tslint.json -------------------------------------------------------------------------------- /tests/valid-typeof/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/valid-typeof/test.ts.lint -------------------------------------------------------------------------------- /tests/valid-typeof/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/valid-typeof/tslint.json -------------------------------------------------------------------------------- /tests/void-zero/test.ts.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/void-zero/test.ts.fix -------------------------------------------------------------------------------- /tests/void-zero/test.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/void-zero/test.ts.lint -------------------------------------------------------------------------------- /tests/void-zero/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tests/void-zero/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint-warnings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tslint-warnings.csv -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/tslint-microsoft-contrib/HEAD/tslint.json --------------------------------------------------------------------------------