├── .circleci └── config.yml ├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .husky └── pre-commit ├── CHANGELOG.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── docs ├── _config.yml └── index.md ├── examples └── ng-cli-example │ ├── .angular-cli.json │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ ├── tsconfig.e2e.json │ └── tslint.json │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── protractor.conf.js │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── rxjs.imports.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json ├── index.js ├── package.json ├── source ├── rules │ ├── rxjsAddRule.ts │ ├── rxjsBanObservablesRule.ts │ ├── rxjsBanOperatorsRule.ts │ ├── rxjsDeepOperatorsRule.ts │ ├── rxjsFinnishRule.ts │ ├── rxjsJustRule.ts │ ├── rxjsNoAddRule.ts │ ├── rxjsNoAsyncSubscribeRule.ts │ ├── rxjsNoCompatRule.ts │ ├── rxjsNoConnectableRule.ts │ ├── rxjsNoCreateRule.ts │ ├── rxjsNoDeepOperatorsRule.ts │ ├── rxjsNoDoRule.ts │ ├── rxjsNoExplicitGenericsRule.ts │ ├── rxjsNoExposedSubjectsRule.ts │ ├── rxjsNoFinnishRule.ts │ ├── rxjsNoIgnoredErrorRule.ts │ ├── rxjsNoIgnoredNotifierRule.ts │ ├── rxjsNoIgnoredObservableRule.ts │ ├── rxjsNoIgnoredReplayBufferRule.ts │ ├── rxjsNoIgnoredSubscribeRule.ts │ ├── rxjsNoIgnoredSubscriptionRule.ts │ ├── rxjsNoIgnoredTakewhileValueRule.ts │ ├── rxjsNoImplicitAnyCatchRule.ts │ ├── rxjsNoIndexRule.ts │ ├── rxjsNoInternalRule.ts │ ├── rxjsNoNestedSubscribeRule.ts │ ├── rxjsNoOperatorRule.ts │ ├── rxjsNoPatchedRule.ts │ ├── rxjsNoRedundantNotifyRule.ts │ ├── rxjsNoSharereplayRule.ts │ ├── rxjsNoSubclassRule.ts │ ├── rxjsNoSubjectUnsubscribeRule.ts │ ├── rxjsNoSubjectValueRule.ts │ ├── rxjsNoTapRule.ts │ ├── rxjsNoTopromiseRule.ts │ ├── rxjsNoUnboundMethodsRule.ts │ ├── rxjsNoUnsafeCatchRule.ts │ ├── rxjsNoUnsafeFirstRule.ts │ ├── rxjsNoUnsafeScopeRule.ts │ ├── rxjsNoUnsafeSubjectNextRule.ts │ ├── rxjsNoUnsafeSwitchmapRule-spec.ts │ ├── rxjsNoUnsafeSwitchmapRule.ts │ ├── rxjsNoUnsafeTakeuntilRule.ts │ ├── rxjsNoUnsafeTakewhileRule.ts │ ├── rxjsNoUnusedAddRule.ts │ ├── rxjsNoWholesaleRule.ts │ ├── rxjsPreferAddRule.ts │ ├── rxjsPreferAngularAsyncPipeRule.ts │ ├── rxjsPreferAngularCompositionRule.ts │ ├── rxjsPreferAngularTakeuntilRule.ts │ ├── rxjsPreferAsyncPipeRule.ts │ ├── rxjsPreferObserverRule.ts │ ├── rxjsSuffixSubjectsRule.ts │ └── rxjsThrowErrorRule.ts └── support │ ├── added-walker.ts │ ├── knowns-spec.ts │ ├── knowns.ts │ ├── peer-spec.ts │ ├── peer.ts │ ├── scope-walker.ts │ ├── used-walker.ts │ └── util.ts ├── test ├── v5 │ ├── .gitignore │ ├── fixtures │ │ ├── add │ │ │ ├── custom-observable-class │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── custom-observable-factory │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── custom-operator │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── elsewhere-with-file-allowed │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── elsewhere-with-file │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── flat-map │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-33 │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── with-file-allow-unused │ │ │ │ ├── app.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── with-file-missing │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── with-file-unused │ │ │ │ ├── app.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── ban-observables │ │ │ ├── imported │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── patched-elsewhere │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── patched │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── ban-operators │ │ │ ├── imported │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── patched-elsewhere │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── patched │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── deep-operators │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── finnish │ │ │ ├── optional │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── whitelist-angular │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── whitelist-explicit │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── whitelist-optional │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── with-$ │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-functions │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-methods │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-parameters │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-properties │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-variables │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── without-$ │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── just │ │ │ ├── default │ │ │ │ ├── fixture.ts.fix │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── user-land │ │ │ │ ├── fixture.ts.fix │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-add │ │ │ ├── allow-all-observables │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-all-operators │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-some-observables │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-some-operators │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-create │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-deep-operators │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-do │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-finnish │ │ │ ├── with-$ │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── without-$ │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-ignored-error │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-ignored-subscribe │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-operator │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-patched │ │ │ ├── allow-all-observables │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-all-operators │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-some-observables │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-some-operators │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── default │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-subject-unsubscribe │ │ │ ├── async-subject │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── subject │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-subject-value │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-tap │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-catch │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-first │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-scope │ │ │ ├── default │ │ │ │ ├── constants.ts │ │ │ │ ├── enums.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── disallow │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-switchmap │ │ │ ├── allow-foo │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── disallow-foo │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-takeuntil │ │ │ ├── allow-custom │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-takewhile │ │ │ └── default │ │ │ │ ├── constants.ts │ │ │ │ ├── enums.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unused-add │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── observable-create │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-wholesale │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ └── throw-error │ │ │ ├── notified │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ │ └── thrown │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ └── package.json ├── v6-compat │ ├── .gitignore │ ├── fixtures │ │ ├── add │ │ │ ├── custom-observable-class │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── custom-observable-factory │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── custom-operator │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── elsewhere-with-file-allowed │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── elsewhere-with-file │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── flat-map │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-33 │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── with-file-allow-unused │ │ │ │ ├── app.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── with-file-missing │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── with-file-unused │ │ │ │ ├── app.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── ban-observables │ │ │ ├── imported │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── patched-elsewhere │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── patched │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── ban-operators │ │ │ ├── imported │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── patched-elsewhere │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── patched │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── deep-operators │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── finnish │ │ │ ├── optional │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── whitelist-angular │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── whitelist-explicit │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── whitelist-optional │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── with-$ │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-functions │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-methods │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-parameters │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-properties │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-variables │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── without-$ │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── just │ │ │ ├── default │ │ │ │ ├── fixture.ts.fix │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── user-land │ │ │ │ ├── fixture.ts.fix │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-add │ │ │ ├── allow-all-observables │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-all-operators │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-some-observables │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-some-operators │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-create │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-deep-operators │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-do │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-finnish │ │ │ ├── with-$ │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── without-$ │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-ignored-error │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-ignored-subscribe │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-operator │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-patched │ │ │ ├── allow-all-observables │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-all-operators │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-some-observables │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-some-operators │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── default │ │ │ │ ├── add.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-subject-unsubscribe │ │ │ ├── async-subject │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── subject │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-subject-value │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-tap │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-catch │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-first │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-scope │ │ │ ├── default │ │ │ │ ├── constants.ts │ │ │ │ ├── enums.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── disallow │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-switchmap │ │ │ ├── allow-foo │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── disallow-foo │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-takeuntil │ │ │ ├── allow-custom │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-takewhile │ │ │ └── default │ │ │ │ ├── constants.ts │ │ │ │ ├── enums.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unused-add │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── observable-create │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-wholesale │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ └── throw-error │ │ │ ├── notified │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ │ └── thrown │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ └── package.json ├── v6 │ ├── .gitignore │ ├── fixtures │ │ ├── ban-observables │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── ban-operators │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── finnish │ │ │ ├── optional │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── whitelist-angular │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── whitelist-explicit │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── whitelist-optional │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── with-$ │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-functions │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-methods │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-parameters │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-properties │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── without-$-no-variables │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── without-$ │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── just │ │ │ ├── default │ │ │ │ ├── fixture.ts.fix │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── user-land │ │ │ │ ├── fixture.ts.fix │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-async-subscribe │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-compat │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── issue-105 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-connectable │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-create │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-explicit-generics │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── literals │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-exposed-subjects │ │ │ ├── angular │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── protected-angular │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── protected │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-finnish │ │ │ ├── with-$ │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── without-$ │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-ignored-error │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-ignored-notifier │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-ignored-observable │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-ignored-replay-buffer │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── diff-import-alias │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-ignored-subscribe │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-ignored-subscription │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-ignored-takewhile-value │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-implicit-any-catch │ │ │ ├── allowed │ │ │ │ ├── fixture.ts.fix │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── default │ │ │ │ ├── fixture.ts.fix │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── narrowed │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── not-allowed │ │ │ │ ├── fixture.ts.fix │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-index │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-internal │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-nested-subscribe │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── prototype │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-redundant-notify │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-sharereplay │ │ │ ├── allow-config │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-subclass │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── issue-87 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-subject-unsubscribe │ │ │ ├── async-subject │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── subject │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-subject-value │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-tap │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-topromise │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unbound-methods │ │ │ ├── arrow │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── bound │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── deep │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── static │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── unbound │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-catch │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-96 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── resubscribe │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-first │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-scope │ │ │ ├── allow │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── default │ │ │ │ ├── constants.ts │ │ │ │ ├── enums.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── destructuring │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── disallow │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-101 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-102 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── thing.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-52 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-54 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-61 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-65 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-67 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-68 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-69 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── issue-70 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── func.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-subject-next │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-switchmap │ │ │ ├── allow-foo │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── disallow-foo │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── issue-50 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-takeuntil │ │ │ ├── alias │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-custom │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── allow-default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── issue-49 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── no-unsafe-takewhile │ │ │ └── default │ │ │ │ ├── constants.ts │ │ │ │ ├── enums.ts │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── prefer-angular-async-pipe │ │ │ └── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── prefer-angular-composition │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── not-a-component │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── prefer-angular-takeuntil │ │ │ ├── alias │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── check-decorators │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-115 │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── no-destroy │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── not-a-component │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── prefer-observer │ │ │ ├── allow-next │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── disallow-next │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── named │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── non-arrow-functions │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ ├── suffix-subjects │ │ │ ├── default │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── diff-suffix-set │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── issue-88 │ │ │ │ ├── fixtures.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ ├── options-false │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ │ └── options-unset │ │ │ │ ├── fixture.ts.lint │ │ │ │ ├── tsconfig.json │ │ │ │ └── tslint.json │ │ └── throw-error │ │ │ ├── issue-85 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ │ ├── issue-86 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ │ ├── notified │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ │ └── thrown │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ └── package.json └── v7 │ ├── .gitignore │ ├── fixtures │ ├── ban-observables │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── ban-operators │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── finnish │ │ ├── optional │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── whitelist-angular │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── whitelist-explicit │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── whitelist-optional │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── with-$ │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── without-$-no-functions │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── without-$-no-methods │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── without-$-no-parameters │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── without-$-no-properties │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── without-$-no-variables │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── without-$ │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── just │ │ ├── default │ │ │ ├── fixture.ts.fix │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── user-land │ │ │ ├── fixture.ts.fix │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-async-subscribe │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-compat │ │ ├── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── issue-105 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-connectable │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-create │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-explicit-generics │ │ ├── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── literals │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-exposed-subjects │ │ ├── angular │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── protected-angular │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── protected │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-finnish │ │ ├── with-$ │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── without-$ │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-ignored-error │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-ignored-notifier │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-ignored-observable │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-ignored-replay-buffer │ │ ├── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── diff-import-alias │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-ignored-subscribe │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-ignored-subscription │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-ignored-takewhile-value │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-implicit-any-catch │ │ ├── allowed │ │ │ ├── fixture.ts.fix │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── default │ │ │ ├── fixture.ts.fix │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── narrowed │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── not-allowed │ │ │ ├── fixture.ts.fix │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-index │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-internal │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-nested-subscribe │ │ ├── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── prototype │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-redundant-notify │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-sharereplay │ │ ├── allow-config │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-subclass │ │ ├── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── issue-87 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-subject-unsubscribe │ │ ├── async-subject │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── subject │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-subject-value │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-tap │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-topromise │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-unbound-methods │ │ ├── arrow │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── bound │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── deep │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── static │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── unbound │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-unsafe-catch │ │ ├── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── issue-96 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── resubscribe │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-unsafe-first │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-unsafe-scope │ │ ├── allow │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── default │ │ │ ├── constants.ts │ │ │ ├── enums.ts │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── destructuring │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── disallow │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── issue-101 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── issue-102 │ │ │ ├── fixture.ts.lint │ │ │ ├── thing.ts │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── issue-52 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── issue-54 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── issue-61 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── issue-65 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── issue-67 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── issue-68 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── issue-69 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── issue-70 │ │ │ ├── fixture.ts.lint │ │ │ ├── func.ts │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-unsafe-subject-next │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-unsafe-switchmap │ │ ├── allow-foo │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── disallow-foo │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── issue-50 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-unsafe-takeuntil │ │ ├── alias │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── allow-custom │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── allow-default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── issue-49 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── no-unsafe-takewhile │ │ └── default │ │ │ ├── constants.ts │ │ │ ├── enums.ts │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── prefer-angular-async-pipe │ │ └── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── prefer-angular-composition │ │ ├── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── not-a-component │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── prefer-angular-takeuntil │ │ ├── alias │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── check-decorators │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── issue-115 │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── no-destroy │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── not-a-component │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── prefer-observer │ │ ├── allow-next │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── disallow-next │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── named │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── non-arrow-functions │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ ├── suffix-subjects │ │ ├── default │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── diff-suffix-set │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── issue-88 │ │ │ ├── fixtures.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ ├── options-false │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ │ └── options-unset │ │ │ ├── fixture.ts.lint │ │ │ ├── tsconfig.json │ │ │ └── tslint.json │ └── throw-error │ │ ├── issue-85 │ │ ├── fixture.ts.lint │ │ ├── tsconfig.json │ │ └── tslint.json │ │ ├── issue-86 │ │ ├── fixture.ts.lint │ │ ├── tsconfig.json │ │ └── tslint.json │ │ ├── notified │ │ ├── fixture.ts.lint │ │ ├── tsconfig.json │ │ └── tslint.json │ │ └── thrown │ │ ├── fixture.ts.lint │ │ ├── tsconfig.json │ │ └── tslint.json │ └── package.json ├── tsconfig-dist.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | yarn-error.log 2 | /build 3 | /dist 4 | /node_modules 5 | /temp 6 | /.idea 7 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/docs/index.md -------------------------------------------------------------------------------- /examples/ng-cli-example/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/.angular-cli.json -------------------------------------------------------------------------------- /examples/ng-cli-example/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/.editorconfig -------------------------------------------------------------------------------- /examples/ng-cli-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/.gitignore -------------------------------------------------------------------------------- /examples/ng-cli-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/README.md -------------------------------------------------------------------------------- /examples/ng-cli-example/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /examples/ng-cli-example/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/e2e/app.po.ts -------------------------------------------------------------------------------- /examples/ng-cli-example/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /examples/ng-cli-example/e2e/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/e2e/tslint.json -------------------------------------------------------------------------------- /examples/ng-cli-example/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/karma.conf.js -------------------------------------------------------------------------------- /examples/ng-cli-example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/package-lock.json -------------------------------------------------------------------------------- /examples/ng-cli-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/package.json -------------------------------------------------------------------------------- /examples/ng-cli-example/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/protractor.conf.js -------------------------------------------------------------------------------- /examples/ng-cli-example/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ng-cli-example/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/app/app.component.html -------------------------------------------------------------------------------- /examples/ng-cli-example/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /examples/ng-cli-example/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/app/app.component.ts -------------------------------------------------------------------------------- /examples/ng-cli-example/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/app/app.module.ts -------------------------------------------------------------------------------- /examples/ng-cli-example/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/ng-cli-example/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /examples/ng-cli-example/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/environments/environment.ts -------------------------------------------------------------------------------- /examples/ng-cli-example/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/favicon.ico -------------------------------------------------------------------------------- /examples/ng-cli-example/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/index.html -------------------------------------------------------------------------------- /examples/ng-cli-example/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/main.ts -------------------------------------------------------------------------------- /examples/ng-cli-example/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/polyfills.ts -------------------------------------------------------------------------------- /examples/ng-cli-example/src/rxjs.imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/rxjs.imports.ts -------------------------------------------------------------------------------- /examples/ng-cli-example/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/styles.css -------------------------------------------------------------------------------- /examples/ng-cli-example/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/test.ts -------------------------------------------------------------------------------- /examples/ng-cli-example/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/tsconfig.app.json -------------------------------------------------------------------------------- /examples/ng-cli-example/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/tsconfig.spec.json -------------------------------------------------------------------------------- /examples/ng-cli-example/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/src/typings.d.ts -------------------------------------------------------------------------------- /examples/ng-cli-example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/tsconfig.json -------------------------------------------------------------------------------- /examples/ng-cli-example/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/examples/ng-cli-example/tslint.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/package.json -------------------------------------------------------------------------------- /source/rules/rxjsAddRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsAddRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsBanObservablesRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsBanObservablesRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsBanOperatorsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsBanOperatorsRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsDeepOperatorsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsDeepOperatorsRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsFinnishRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsFinnishRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsJustRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsJustRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoAddRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoAddRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoAsyncSubscribeRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoAsyncSubscribeRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoCompatRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoCompatRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoConnectableRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoConnectableRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoCreateRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoCreateRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoDeepOperatorsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoDeepOperatorsRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoDoRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoDoRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoExplicitGenericsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoExplicitGenericsRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoExposedSubjectsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoExposedSubjectsRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoFinnishRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoFinnishRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoIgnoredErrorRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoIgnoredErrorRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoIgnoredNotifierRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoIgnoredNotifierRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoIgnoredObservableRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoIgnoredObservableRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoIgnoredReplayBufferRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoIgnoredReplayBufferRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoIgnoredSubscribeRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoIgnoredSubscribeRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoIgnoredSubscriptionRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoIgnoredSubscriptionRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoIgnoredTakewhileValueRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoIgnoredTakewhileValueRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoImplicitAnyCatchRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoImplicitAnyCatchRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoIndexRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoIndexRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoInternalRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoInternalRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoNestedSubscribeRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoNestedSubscribeRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoOperatorRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoOperatorRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoPatchedRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoPatchedRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoRedundantNotifyRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoRedundantNotifyRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoSharereplayRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoSharereplayRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoSubclassRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoSubclassRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoSubjectUnsubscribeRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoSubjectUnsubscribeRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoSubjectValueRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoSubjectValueRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoTapRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoTapRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoTopromiseRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoTopromiseRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoUnboundMethodsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoUnboundMethodsRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoUnsafeCatchRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoUnsafeCatchRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoUnsafeFirstRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoUnsafeFirstRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoUnsafeScopeRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoUnsafeScopeRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoUnsafeSubjectNextRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoUnsafeSubjectNextRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoUnsafeSwitchmapRule-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoUnsafeSwitchmapRule-spec.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoUnsafeSwitchmapRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoUnsafeSwitchmapRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoUnsafeTakeuntilRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoUnsafeTakeuntilRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoUnsafeTakewhileRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoUnsafeTakewhileRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoUnusedAddRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoUnusedAddRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsNoWholesaleRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsNoWholesaleRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsPreferAddRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsPreferAddRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsPreferAngularAsyncPipeRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsPreferAngularAsyncPipeRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsPreferAngularCompositionRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsPreferAngularCompositionRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsPreferAngularTakeuntilRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsPreferAngularTakeuntilRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsPreferAsyncPipeRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsPreferAsyncPipeRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsPreferObserverRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsPreferObserverRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsSuffixSubjectsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsSuffixSubjectsRule.ts -------------------------------------------------------------------------------- /source/rules/rxjsThrowErrorRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/rules/rxjsThrowErrorRule.ts -------------------------------------------------------------------------------- /source/support/added-walker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/support/added-walker.ts -------------------------------------------------------------------------------- /source/support/knowns-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/support/knowns-spec.ts -------------------------------------------------------------------------------- /source/support/knowns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/support/knowns.ts -------------------------------------------------------------------------------- /source/support/peer-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/support/peer-spec.ts -------------------------------------------------------------------------------- /source/support/peer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/support/peer.ts -------------------------------------------------------------------------------- /source/support/scope-walker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/support/scope-walker.ts -------------------------------------------------------------------------------- /source/support/used-walker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/support/used-walker.ts -------------------------------------------------------------------------------- /source/support/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/source/support/util.ts -------------------------------------------------------------------------------- /test/v5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/.gitignore -------------------------------------------------------------------------------- /test/v5/fixtures/add/custom-observable-class/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/custom-observable-class/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/custom-observable-class/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/custom-observable-class/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/custom-observable-factory/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/custom-observable-factory/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/custom-operator/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/custom-operator/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/add/custom-operator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/custom-operator/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/custom-operator/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/custom-operator/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/add/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/elsewhere-with-file-allowed/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/elsewhere-with-file-allowed/add.ts -------------------------------------------------------------------------------- /test/v5/fixtures/add/elsewhere-with-file/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/elsewhere-with-file/add.ts -------------------------------------------------------------------------------- /test/v5/fixtures/add/elsewhere-with-file/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/elsewhere-with-file/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/add/elsewhere-with-file/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/elsewhere-with-file/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/elsewhere-with-file/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/elsewhere-with-file/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/flat-map/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/flat-map/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/add/flat-map/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/flat-map/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/flat-map/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/flat-map/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/issue-33/add.ts: -------------------------------------------------------------------------------- 1 | import "rxjs/add/observable/from"; 2 | -------------------------------------------------------------------------------- /test/v5/fixtures/add/issue-33/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/issue-33/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/add/issue-33/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/issue-33/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/issue-33/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/issue-33/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/with-file-allow-unused/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/with-file-allow-unused/app.ts -------------------------------------------------------------------------------- /test/v5/fixtures/add/with-file-allow-unused/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/with-file-allow-unused/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/with-file-allow-unused/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/with-file-allow-unused/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/with-file-missing/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/with-file-missing/add.ts -------------------------------------------------------------------------------- /test/v5/fixtures/add/with-file-missing/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/with-file-missing/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/add/with-file-missing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/with-file-missing/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/with-file-missing/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/with-file-missing/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/with-file-unused/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/with-file-unused/app.ts -------------------------------------------------------------------------------- /test/v5/fixtures/add/with-file-unused/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/with-file-unused/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/add/with-file-unused/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/with-file-unused/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/add/with-file-unused/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/add/with-file-unused/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/ban-observables/imported/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-observables/imported/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/ban-observables/imported/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-observables/imported/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/ban-observables/imported/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-observables/imported/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/ban-observables/patched-elsewhere/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-observables/patched-elsewhere/add.ts -------------------------------------------------------------------------------- /test/v5/fixtures/ban-observables/patched/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-observables/patched/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/ban-observables/patched/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-observables/patched/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/ban-observables/patched/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-observables/patched/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/ban-operators/imported/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-operators/imported/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/ban-operators/imported/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-operators/imported/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/ban-operators/imported/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-operators/imported/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/ban-operators/patched-elsewhere/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-operators/patched-elsewhere/add.ts -------------------------------------------------------------------------------- /test/v5/fixtures/ban-operators/patched/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-operators/patched/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/ban-operators/patched/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-operators/patched/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/ban-operators/patched/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/ban-operators/patched/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/deep-operators/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/deep-operators/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/deep-operators/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/deep-operators/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/deep-operators/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/deep-operators/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/optional/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/optional/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/optional/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/optional/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/optional/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/optional/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/whitelist-angular/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/whitelist-angular/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/whitelist-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/whitelist-angular/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/whitelist-angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/whitelist-angular/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/whitelist-explicit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/whitelist-explicit/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/whitelist-explicit/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/whitelist-explicit/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/whitelist-optional/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/whitelist-optional/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/whitelist-optional/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/whitelist-optional/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/with-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/with-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/with-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/with-$/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/with-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/with-$/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/without-$-no-methods/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/without-$-no-methods/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/without-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/without-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/without-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/without-$/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/finnish/without-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/finnish/without-$/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/just/default/fixture.ts.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/just/default/fixture.ts.fix -------------------------------------------------------------------------------- /test/v5/fixtures/just/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/just/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/just/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/just/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/just/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/just/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/just/user-land/fixture.ts.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/just/user-land/fixture.ts.fix -------------------------------------------------------------------------------- /test/v5/fixtures/just/user-land/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/just/user-land/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/just/user-land/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/just/user-land/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/just/user-land/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/just/user-land/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-add/allow-all-observables/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-add/allow-all-observables/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-add/allow-all-operators/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-add/allow-all-operators/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-add/allow-all-operators/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-add/allow-all-operators/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-add/allow-some-observables/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-add/allow-some-observables/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-add/allow-some-operators/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-add/allow-some-operators/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-add/allow-some-operators/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-add/allow-some-operators/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-add/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-add/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-add/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-add/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-add/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-add/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-create/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-create/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-create/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-create/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-create/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-create/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-deep-operators/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-deep-operators/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-deep-operators/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-deep-operators/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-deep-operators/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-deep-operators/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-do/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-do/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-do/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-do/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-do/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-do/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-finnish/with-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-finnish/with-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-finnish/with-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-finnish/with-$/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-finnish/with-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-finnish/with-$/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-finnish/without-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-finnish/without-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-finnish/without-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-finnish/without-$/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-finnish/without-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-finnish/without-$/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-ignored-error/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-ignored-error/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-ignored-error/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-ignored-error/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-ignored-error/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-ignored-error/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-ignored-subscribe/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-ignored-subscribe/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-operator/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-operator/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-operator/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-operator/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-operator/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-operator/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-patched/allow-all-observables/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-patched/allow-all-observables/add.ts -------------------------------------------------------------------------------- /test/v5/fixtures/no-patched/allow-all-operators/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-patched/allow-all-operators/add.ts -------------------------------------------------------------------------------- /test/v5/fixtures/no-patched/allow-some-observables/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-patched/allow-some-observables/add.ts -------------------------------------------------------------------------------- /test/v5/fixtures/no-patched/allow-some-operators/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-patched/allow-some-operators/add.ts -------------------------------------------------------------------------------- /test/v5/fixtures/no-patched/default/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-patched/default/add.ts -------------------------------------------------------------------------------- /test/v5/fixtures/no-patched/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-patched/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-patched/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-patched/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-patched/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-patched/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-subject-value/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-subject-value/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-subject-value/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-subject-value/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-subject-value/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-subject-value/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-tap/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-tap/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-tap/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-tap/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-tap/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-tap/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-catch/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-catch/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-catch/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-catch/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-catch/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-catch/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-first/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-first/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-first/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-first/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-first/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-first/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-scope/default/constants.ts: -------------------------------------------------------------------------------- 1 | export const THOUSAND = 1000; 2 | -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-scope/default/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-scope/default/enums.ts -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-scope/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-scope/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-scope/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-scope/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-scope/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-scope/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-scope/disallow/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-scope/disallow/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-scope/disallow/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-scope/disallow/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-scope/disallow/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-scope/disallow/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-switchmap/allow-foo/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-switchmap/allow-foo/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-switchmap/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-switchmap/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-switchmap/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-switchmap/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-takeuntil/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-takeuntil/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-takeuntil/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-takeuntil/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-takewhile/default/constants.ts: -------------------------------------------------------------------------------- 1 | export const THOUSAND = 1000; 2 | -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-takewhile/default/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-takewhile/default/enums.ts -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-takewhile/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-takewhile/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unsafe-takewhile/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unsafe-takewhile/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unused-add/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unused-add/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-unused-add/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unused-add/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-unused-add/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-unused-add/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-wholesale/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-wholesale/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/no-wholesale/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-wholesale/default/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/no-wholesale/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/no-wholesale/default/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/throw-error/notified/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/throw-error/notified/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/throw-error/notified/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/throw-error/notified/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/throw-error/notified/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/throw-error/notified/tslint.json -------------------------------------------------------------------------------- /test/v5/fixtures/throw-error/thrown/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/throw-error/thrown/fixture.ts.lint -------------------------------------------------------------------------------- /test/v5/fixtures/throw-error/thrown/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/throw-error/thrown/tsconfig.json -------------------------------------------------------------------------------- /test/v5/fixtures/throw-error/thrown/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/fixtures/throw-error/thrown/tslint.json -------------------------------------------------------------------------------- /test/v5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v5/package.json -------------------------------------------------------------------------------- /test/v6-compat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/.gitignore -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/custom-operator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/custom-operator/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/custom-operator/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/custom-operator/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/default/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/elsewhere-with-file/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/elsewhere-with-file/add.ts -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/flat-map/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/flat-map/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/flat-map/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/flat-map/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/flat-map/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/flat-map/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/issue-33/add.ts: -------------------------------------------------------------------------------- 1 | import "rxjs/add/observable/from"; 2 | -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/issue-33/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/issue-33/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/issue-33/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/issue-33/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/issue-33/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/issue-33/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/with-file-allow-unused/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/with-file-allow-unused/app.ts -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/with-file-missing/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/with-file-missing/add.ts -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/with-file-missing/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/with-file-missing/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/with-file-unused/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/with-file-unused/app.ts -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/with-file-unused/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/with-file-unused/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/add/with-file-unused/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/add/with-file-unused/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/ban-operators/imported/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/ban-operators/imported/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/ban-operators/patched/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/ban-operators/patched/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/deep-operators/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/deep-operators/default/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/finnish/optional/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/finnish/optional/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/finnish/optional/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/finnish/optional/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/finnish/optional/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/finnish/optional/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/finnish/with-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/finnish/with-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/finnish/with-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/finnish/with-$/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/finnish/with-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/finnish/with-$/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/finnish/without-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/finnish/without-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/finnish/without-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/finnish/without-$/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/finnish/without-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/finnish/without-$/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/just/default/fixture.ts.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/just/default/fixture.ts.fix -------------------------------------------------------------------------------- /test/v6-compat/fixtures/just/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/just/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/just/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/just/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/just/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/just/default/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/just/user-land/fixture.ts.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/just/user-land/fixture.ts.fix -------------------------------------------------------------------------------- /test/v6-compat/fixtures/just/user-land/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/just/user-land/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/just/user-land/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/just/user-land/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/just/user-land/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/just/user-land/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-add/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-add/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-add/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-add/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-add/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-add/default/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-create/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-create/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-create/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-create/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-create/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-create/default/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-do/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-do/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-do/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-do/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-do/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-do/default/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-finnish/with-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-finnish/with-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-finnish/with-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-finnish/with-$/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-finnish/with-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-finnish/with-$/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-finnish/without-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-finnish/without-$/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-finnish/without-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-finnish/without-$/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-operator/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-operator/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-operator/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-operator/default/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-patched/default/add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-patched/default/add.ts -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-patched/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-patched/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-patched/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-patched/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-patched/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-patched/default/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-tap/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-tap/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-tap/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-tap/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-tap/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-tap/default/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-unsafe-scope/default/constants.ts: -------------------------------------------------------------------------------- 1 | export const THOUSAND = 1000; 2 | -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-unsafe-scope/default/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-unsafe-scope/default/enums.ts -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-unsafe-takewhile/default/constants.ts: -------------------------------------------------------------------------------- 1 | export const THOUSAND = 1000; 2 | -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-unused-add/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-unused-add/default/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-wholesale/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-wholesale/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/no-wholesale/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/no-wholesale/default/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/throw-error/notified/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/throw-error/notified/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/throw-error/notified/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/throw-error/notified/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/throw-error/thrown/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/throw-error/thrown/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6-compat/fixtures/throw-error/thrown/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/throw-error/thrown/tsconfig.json -------------------------------------------------------------------------------- /test/v6-compat/fixtures/throw-error/thrown/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/fixtures/throw-error/thrown/tslint.json -------------------------------------------------------------------------------- /test/v6-compat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6-compat/package.json -------------------------------------------------------------------------------- /test/v6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/.gitignore -------------------------------------------------------------------------------- /test/v6/fixtures/ban-observables/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/ban-observables/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/ban-observables/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/ban-observables/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/ban-observables/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/ban-observables/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/ban-operators/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/ban-operators/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/ban-operators/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/ban-operators/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/ban-operators/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/ban-operators/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/optional/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/optional/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/optional/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/optional/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/optional/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/optional/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/whitelist-angular/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/whitelist-angular/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/whitelist-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/whitelist-angular/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/whitelist-angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/whitelist-angular/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/whitelist-explicit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/whitelist-explicit/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/whitelist-explicit/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/whitelist-explicit/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/whitelist-optional/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/whitelist-optional/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/whitelist-optional/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/whitelist-optional/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/with-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/with-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/with-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/with-$/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/with-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/with-$/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/without-$-no-methods/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/without-$-no-methods/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/without-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/without-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/without-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/without-$/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/finnish/without-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/finnish/without-$/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/just/default/fixture.ts.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/just/default/fixture.ts.fix -------------------------------------------------------------------------------- /test/v6/fixtures/just/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/just/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/just/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/just/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/just/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/just/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/just/user-land/fixture.ts.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/just/user-land/fixture.ts.fix -------------------------------------------------------------------------------- /test/v6/fixtures/just/user-land/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/just/user-land/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/just/user-land/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/just/user-land/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/just/user-land/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/just/user-land/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-async-subscribe/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-async-subscribe/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-async-subscribe/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-async-subscribe/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-compat/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-compat/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-compat/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-compat/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-compat/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-compat/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-compat/issue-105/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-compat/issue-105/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-compat/issue-105/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-compat/issue-105/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-compat/issue-105/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-compat/issue-105/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-connectable/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-connectable/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-connectable/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-connectable/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-connectable/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-connectable/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-create/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-create/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-create/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-create/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-create/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-create/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-explicit-generics/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-explicit-generics/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-explicit-generics/literals/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-explicit-generics/literals/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-exposed-subjects/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-exposed-subjects/angular/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-exposed-subjects/angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-exposed-subjects/angular/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-exposed-subjects/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-exposed-subjects/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-exposed-subjects/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-exposed-subjects/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-exposed-subjects/protected/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-exposed-subjects/protected/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-finnish/with-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-finnish/with-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-finnish/with-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-finnish/with-$/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-finnish/with-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-finnish/with-$/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-finnish/without-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-finnish/without-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-finnish/without-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-finnish/without-$/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-finnish/without-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-finnish/without-$/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-ignored-error/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-ignored-error/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-ignored-error/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-ignored-error/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-ignored-error/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-ignored-error/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-ignored-notifier/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-ignored-notifier/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-ignored-notifier/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-ignored-notifier/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-ignored-observable/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-ignored-observable/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-ignored-subscribe/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-ignored-subscribe/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-implicit-any-catch/allowed/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-implicit-any-catch/allowed/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-implicit-any-catch/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-implicit-any-catch/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-index/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-index/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-index/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-index/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-index/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-index/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-internal/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-internal/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-internal/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-internal/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-internal/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-internal/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-nested-subscribe/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-nested-subscribe/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-nested-subscribe/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-nested-subscribe/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-nested-subscribe/prototype/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-nested-subscribe/prototype/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-redundant-notify/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-redundant-notify/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-redundant-notify/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-redundant-notify/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-sharereplay/allow-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-sharereplay/allow-config/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-sharereplay/allow-config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-sharereplay/allow-config/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-sharereplay/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-sharereplay/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-sharereplay/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-sharereplay/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-sharereplay/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-sharereplay/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-subclass/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-subclass/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-subclass/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-subclass/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-subclass/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-subclass/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-subclass/issue-87/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-subclass/issue-87/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-subclass/issue-87/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-subclass/issue-87/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-subclass/issue-87/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-subclass/issue-87/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-subject-value/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-subject-value/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-subject-value/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-subject-value/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-subject-value/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-subject-value/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-tap/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-tap/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-tap/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-tap/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-tap/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-tap/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-topromise/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-topromise/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-topromise/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-topromise/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-topromise/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-topromise/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/arrow/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/arrow/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/arrow/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/arrow/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/arrow/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/arrow/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/bound/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/bound/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/bound/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/bound/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/bound/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/bound/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/deep/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/deep/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/deep/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/deep/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/deep/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/deep/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/static/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/static/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/static/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/static/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/static/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/static/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/unbound/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/unbound/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unbound-methods/unbound/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unbound-methods/unbound/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-catch/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-catch/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-catch/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-catch/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-catch/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-catch/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-catch/issue-96/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-catch/issue-96/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-catch/issue-96/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-catch/issue-96/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-catch/issue-96/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-catch/issue-96/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-catch/resubscribe/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-catch/resubscribe/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-catch/resubscribe/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-catch/resubscribe/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-first/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-first/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-first/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-first/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-first/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-first/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/allow/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/allow/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/allow/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/allow/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/allow/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/allow/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/default/constants.ts: -------------------------------------------------------------------------------- 1 | export const THOUSAND = 1000; 2 | -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/default/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/default/enums.ts -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/destructuring/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/destructuring/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/disallow/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/disallow/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/disallow/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/disallow/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/disallow/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/disallow/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-101/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-101/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-101/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-101/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-101/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-101/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-102/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-102/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-102/thing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-102/thing.ts -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-102/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-102/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-102/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-102/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-52/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-52/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-52/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-52/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-52/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-52/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-54/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-54/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-54/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-54/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-54/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-54/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-61/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-61/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-61/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-61/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-61/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-61/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-65/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-65/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-65/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-65/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-65/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-65/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-67/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-67/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-67/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-67/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-67/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-67/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-68/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-68/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-68/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-68/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-68/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-68/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-69/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-69/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-69/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-69/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-69/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-69/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-70/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-70/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-70/func.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-70/func.ts -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-70/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-70/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-scope/issue-70/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-scope/issue-70/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-switchmap/allow-foo/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-switchmap/allow-foo/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-switchmap/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-switchmap/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-switchmap/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-switchmap/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-switchmap/issue-50/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-switchmap/issue-50/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-takeuntil/alias/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-takeuntil/alias/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-takeuntil/alias/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-takeuntil/alias/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-takeuntil/alias/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-takeuntil/alias/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-takeuntil/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-takeuntil/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-takeuntil/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-takeuntil/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-takeuntil/issue-49/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-takeuntil/issue-49/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-takewhile/default/constants.ts: -------------------------------------------------------------------------------- 1 | export const THOUSAND = 1000; 2 | -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-takewhile/default/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-takewhile/default/enums.ts -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-takewhile/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-takewhile/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/no-unsafe-takewhile/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/no-unsafe-takewhile/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/prefer-observer/allow-next/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/prefer-observer/allow-next/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/prefer-observer/allow-next/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/prefer-observer/allow-next/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/prefer-observer/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/prefer-observer/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/prefer-observer/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/prefer-observer/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/prefer-observer/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/prefer-observer/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/prefer-observer/disallow-next/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/prefer-observer/disallow-next/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/prefer-observer/named/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/prefer-observer/named/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/prefer-observer/named/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/prefer-observer/named/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/prefer-observer/named/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/prefer-observer/named/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/suffix-subjects/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/suffix-subjects/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/suffix-subjects/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/suffix-subjects/default/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/suffix-subjects/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/suffix-subjects/default/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/suffix-subjects/issue-88/fixtures.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/suffix-subjects/issue-88/fixtures.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/suffix-subjects/issue-88/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/suffix-subjects/issue-88/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/suffix-subjects/issue-88/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/suffix-subjects/issue-88/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/suffix-subjects/options-false/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/suffix-subjects/options-false/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/suffix-subjects/options-unset/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/suffix-subjects/options-unset/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/throw-error/issue-85/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/throw-error/issue-85/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/throw-error/issue-85/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/throw-error/issue-85/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/throw-error/issue-85/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/throw-error/issue-85/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/throw-error/issue-86/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/throw-error/issue-86/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/throw-error/issue-86/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/throw-error/issue-86/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/throw-error/issue-86/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/throw-error/issue-86/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/throw-error/notified/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/throw-error/notified/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/throw-error/notified/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/throw-error/notified/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/throw-error/notified/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/throw-error/notified/tslint.json -------------------------------------------------------------------------------- /test/v6/fixtures/throw-error/thrown/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/throw-error/thrown/fixture.ts.lint -------------------------------------------------------------------------------- /test/v6/fixtures/throw-error/thrown/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/throw-error/thrown/tsconfig.json -------------------------------------------------------------------------------- /test/v6/fixtures/throw-error/thrown/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/fixtures/throw-error/thrown/tslint.json -------------------------------------------------------------------------------- /test/v6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v6/package.json -------------------------------------------------------------------------------- /test/v7/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/.gitignore -------------------------------------------------------------------------------- /test/v7/fixtures/ban-observables/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/ban-observables/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/ban-observables/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/ban-observables/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/ban-observables/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/ban-observables/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/ban-operators/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/ban-operators/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/ban-operators/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/ban-operators/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/ban-operators/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/ban-operators/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/optional/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/optional/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/optional/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/optional/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/optional/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/optional/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/whitelist-angular/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/whitelist-angular/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/whitelist-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/whitelist-angular/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/whitelist-angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/whitelist-angular/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/whitelist-explicit/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/whitelist-explicit/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/whitelist-explicit/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/whitelist-explicit/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/whitelist-optional/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/whitelist-optional/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/whitelist-optional/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/whitelist-optional/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/with-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/with-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/with-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/with-$/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/with-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/with-$/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/without-$-no-methods/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/without-$-no-methods/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/without-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/without-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/without-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/without-$/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/finnish/without-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/finnish/without-$/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/just/default/fixture.ts.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/just/default/fixture.ts.fix -------------------------------------------------------------------------------- /test/v7/fixtures/just/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/just/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/just/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/just/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/just/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/just/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/just/user-land/fixture.ts.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/just/user-land/fixture.ts.fix -------------------------------------------------------------------------------- /test/v7/fixtures/just/user-land/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/just/user-land/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/just/user-land/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/just/user-land/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/just/user-land/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/just/user-land/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-async-subscribe/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-async-subscribe/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-async-subscribe/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-async-subscribe/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-compat/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-compat/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-compat/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-compat/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-compat/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-compat/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-compat/issue-105/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-compat/issue-105/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-compat/issue-105/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-compat/issue-105/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-compat/issue-105/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-compat/issue-105/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-connectable/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-connectable/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-connectable/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-connectable/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-connectable/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-connectable/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-create/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-create/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-create/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-create/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-create/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-create/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-explicit-generics/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-explicit-generics/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-explicit-generics/literals/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-explicit-generics/literals/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-exposed-subjects/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-exposed-subjects/angular/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-exposed-subjects/angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-exposed-subjects/angular/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-exposed-subjects/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-exposed-subjects/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-exposed-subjects/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-exposed-subjects/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-exposed-subjects/protected/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-exposed-subjects/protected/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-finnish/with-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-finnish/with-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-finnish/with-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-finnish/with-$/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-finnish/with-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-finnish/with-$/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-finnish/without-$/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-finnish/without-$/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-finnish/without-$/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-finnish/without-$/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-finnish/without-$/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-finnish/without-$/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-ignored-error/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-ignored-error/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-ignored-error/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-ignored-error/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-ignored-error/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-ignored-error/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-ignored-notifier/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-ignored-notifier/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-ignored-notifier/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-ignored-notifier/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-ignored-observable/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-ignored-observable/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-ignored-subscribe/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-ignored-subscribe/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-implicit-any-catch/allowed/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-implicit-any-catch/allowed/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-implicit-any-catch/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-implicit-any-catch/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-index/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-index/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-index/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-index/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-index/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-index/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-internal/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-internal/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-internal/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-internal/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-internal/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-internal/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-nested-subscribe/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-nested-subscribe/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-nested-subscribe/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-nested-subscribe/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-nested-subscribe/prototype/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-nested-subscribe/prototype/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-redundant-notify/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-redundant-notify/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-redundant-notify/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-redundant-notify/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-sharereplay/allow-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-sharereplay/allow-config/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-sharereplay/allow-config/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-sharereplay/allow-config/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-sharereplay/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-sharereplay/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-sharereplay/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-sharereplay/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-sharereplay/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-sharereplay/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-subclass/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-subclass/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-subclass/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-subclass/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-subclass/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-subclass/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-subclass/issue-87/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-subclass/issue-87/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-subclass/issue-87/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-subclass/issue-87/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-subclass/issue-87/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-subclass/issue-87/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-subject-value/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-subject-value/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-subject-value/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-subject-value/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-subject-value/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-subject-value/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-tap/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-tap/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-tap/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-tap/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-tap/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-tap/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-topromise/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-topromise/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-topromise/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-topromise/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-topromise/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-topromise/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/arrow/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/arrow/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/arrow/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/arrow/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/arrow/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/arrow/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/bound/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/bound/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/bound/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/bound/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/bound/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/bound/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/deep/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/deep/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/deep/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/deep/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/deep/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/deep/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/static/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/static/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/static/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/static/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/static/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/static/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/unbound/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/unbound/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unbound-methods/unbound/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unbound-methods/unbound/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-catch/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-catch/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-catch/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-catch/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-catch/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-catch/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-catch/issue-96/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-catch/issue-96/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-catch/issue-96/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-catch/issue-96/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-catch/issue-96/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-catch/issue-96/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-catch/resubscribe/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-catch/resubscribe/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-catch/resubscribe/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-catch/resubscribe/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-first/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-first/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-first/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-first/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-first/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-first/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/allow/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/allow/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/allow/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/allow/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/allow/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/allow/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/default/constants.ts: -------------------------------------------------------------------------------- 1 | export const THOUSAND = 1000; 2 | -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/default/enums.ts: -------------------------------------------------------------------------------- 1 | export enum Vertical { 2 | Up = 1, 3 | Down, 4 | } 5 | -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/destructuring/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/destructuring/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/disallow/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/disallow/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/disallow/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/disallow/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/disallow/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/disallow/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-101/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-101/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-101/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-101/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-101/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-101/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-102/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-102/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-102/thing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-102/thing.ts -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-102/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-102/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-102/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-102/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-52/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-52/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-52/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-52/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-52/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-52/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-54/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-54/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-54/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-54/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-54/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-54/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-61/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-61/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-61/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-61/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-61/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-61/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-65/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-65/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-65/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-65/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-65/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-65/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-67/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-67/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-67/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-67/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-68/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-68/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-68/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-68/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-69/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-69/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-69/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-69/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-70/func.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-70/func.ts -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-70/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-70/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-scope/issue-70/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-scope/issue-70/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-switchmap/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-switchmap/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-takeuntil/alias/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-takeuntil/alias/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-takeuntil/alias/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-takeuntil/alias/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-takeuntil/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-takeuntil/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-takewhile/default/constants.ts: -------------------------------------------------------------------------------- 1 | export const THOUSAND = 1000; 2 | -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-takewhile/default/enums.ts: -------------------------------------------------------------------------------- 1 | export enum Vertical { 2 | Up = 1, 3 | Down, 4 | } 5 | -------------------------------------------------------------------------------- /test/v7/fixtures/no-unsafe-takewhile/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/no-unsafe-takewhile/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/prefer-observer/allow-next/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/prefer-observer/allow-next/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/prefer-observer/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/prefer-observer/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/prefer-observer/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/prefer-observer/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/prefer-observer/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/prefer-observer/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/prefer-observer/named/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/prefer-observer/named/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/prefer-observer/named/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/prefer-observer/named/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/prefer-observer/named/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/prefer-observer/named/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/suffix-subjects/default/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/suffix-subjects/default/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/suffix-subjects/default/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/suffix-subjects/default/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/suffix-subjects/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/suffix-subjects/default/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/suffix-subjects/issue-88/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/suffix-subjects/issue-88/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/suffix-subjects/issue-88/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/suffix-subjects/issue-88/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/throw-error/issue-85/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/throw-error/issue-85/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/throw-error/issue-85/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/throw-error/issue-85/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/throw-error/issue-85/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/throw-error/issue-85/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/throw-error/issue-86/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/throw-error/issue-86/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/throw-error/issue-86/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/throw-error/issue-86/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/throw-error/issue-86/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/throw-error/issue-86/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/throw-error/notified/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/throw-error/notified/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/throw-error/notified/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/throw-error/notified/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/throw-error/notified/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/throw-error/notified/tslint.json -------------------------------------------------------------------------------- /test/v7/fixtures/throw-error/thrown/fixture.ts.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/throw-error/thrown/fixture.ts.lint -------------------------------------------------------------------------------- /test/v7/fixtures/throw-error/thrown/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/throw-error/thrown/tsconfig.json -------------------------------------------------------------------------------- /test/v7/fixtures/throw-error/thrown/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/fixtures/throw-error/thrown/tslint.json -------------------------------------------------------------------------------- /test/v7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/test/v7/package.json -------------------------------------------------------------------------------- /tsconfig-dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/tsconfig-dist.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartant/rxjs-tslint-rules/HEAD/yarn.lock --------------------------------------------------------------------------------