├── .circleci └── config.yml ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── package.json ├── scripts ├── circle-publish-npm ├── newRule.js └── test-rules ├── src ├── rules │ ├── index.ts │ ├── jsxAlignmentRule.ts │ ├── jsxBanElementsRule.ts │ ├── jsxBanPropsRule.ts │ ├── jsxBooleanValueRule.ts │ ├── jsxCurlyBracePresenceRule.ts │ ├── jsxCurlySpacingRule.ts │ ├── jsxEqualsSpacingRule.ts │ ├── jsxKeyRule.ts │ ├── jsxNoBindRule.ts │ ├── jsxNoLambdaRule.ts │ ├── jsxNoMultilineJsRule.ts │ ├── jsxNoStringRefRule.ts │ ├── jsxSelfCloseRule.ts │ ├── jsxSpaceBeforeTrailingSlashRule.ts │ ├── jsxUseTranslationFunctionRule.ts │ ├── jsxWhitespaceLiteralRule.ts │ ├── jsxWrapMultilineRule.ts │ └── reactNoUnnecessaryFragmentRule.ts └── utils.ts ├── test └── rules │ ├── jsx-alignment │ ├── test.tsx.lint │ └── tslint.json │ ├── jsx-ban-elements │ ├── test.tsx.lint │ └── tslint.json │ ├── jsx-ban-props │ ├── test.tsx.lint │ └── tslint.json │ ├── jsx-boolean-value │ ├── always │ │ ├── test.tsx.fix │ │ ├── test.tsx.lint │ │ └── tslint.json │ ├── false │ │ ├── test.tsx.lint │ │ └── tslint.json │ ├── never │ │ ├── test.tsx.fix │ │ ├── test.tsx.lint │ │ └── tslint.json │ └── true │ │ ├── test.tsx.fix │ │ ├── test.tsx.lint │ │ └── tslint.json │ ├── jsx-curly-brace-presence │ ├── always │ │ ├── test.tsx.fix │ │ ├── test.tsx.lint │ │ └── tslint.json │ ├── default │ │ ├── test.tsx.fix │ │ ├── test.tsx.lint │ │ └── tslint.json │ └── never │ │ ├── test.tsx.fix │ │ ├── test.tsx.lint │ │ └── tslint.json │ ├── jsx-curly-spacing │ ├── always │ │ ├── test.tsx.fix │ │ ├── test.tsx.lint │ │ └── tslint.json │ └── never │ │ ├── test.tsx.fix │ │ ├── test.tsx.lint │ │ └── tslint.json │ ├── jsx-equals-spacing │ ├── always │ │ ├── test.tsx.fix │ │ ├── test.tsx.lint │ │ └── tslint.json │ └── never │ │ ├── test.tsx.fix │ │ ├── test.tsx.lint │ │ └── tslint.json │ ├── jsx-key │ ├── test.tsx.lint │ └── tslint.json │ ├── jsx-no-bind │ ├── test.tsx.lint │ └── tslint.json │ ├── jsx-no-lambda │ ├── test.tsx.lint │ └── tslint.json │ ├── jsx-no-multiline-js │ ├── test.tsx.lint │ └── tslint.json │ ├── jsx-no-string-ref │ ├── test.tsx.lint │ └── tslint.json │ ├── jsx-self-close │ ├── test.lint.fix │ ├── test.tsx.lint │ └── tslint.json │ ├── jsx-space-before-trailing-slash │ ├── test.tsx.fix │ ├── test.tsx.lint │ └── tslint.json │ ├── jsx-use-translation-function │ ├── allow-both │ │ ├── test.tsx.lint │ │ └── tslint.json │ ├── allow-htmlentities │ │ ├── test.tsx.lint │ │ └── tslint.json │ ├── allow-punctuation │ │ ├── test.tsx.lint │ │ └── tslint.json │ └── default │ │ ├── test.tsx.lint │ │ └── tslint.json │ ├── jsx-whitespace-literal │ ├── test.tsx.fix │ ├── test.tsx.lint │ └── tslint.json │ ├── jsx-wrap-multiline │ ├── test.tsx.lint │ └── tslint.json │ └── react-no-unnecessary-fragment │ ├── test.tsx.lint │ └── tslint.json ├── tsconfig.json ├── tslint-react.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/package.json -------------------------------------------------------------------------------- /scripts/circle-publish-npm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/scripts/circle-publish-npm -------------------------------------------------------------------------------- /scripts/newRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/scripts/newRule.js -------------------------------------------------------------------------------- /scripts/test-rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/scripts/test-rules -------------------------------------------------------------------------------- /src/rules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/index.ts -------------------------------------------------------------------------------- /src/rules/jsxAlignmentRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxAlignmentRule.ts -------------------------------------------------------------------------------- /src/rules/jsxBanElementsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxBanElementsRule.ts -------------------------------------------------------------------------------- /src/rules/jsxBanPropsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxBanPropsRule.ts -------------------------------------------------------------------------------- /src/rules/jsxBooleanValueRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxBooleanValueRule.ts -------------------------------------------------------------------------------- /src/rules/jsxCurlyBracePresenceRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxCurlyBracePresenceRule.ts -------------------------------------------------------------------------------- /src/rules/jsxCurlySpacingRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxCurlySpacingRule.ts -------------------------------------------------------------------------------- /src/rules/jsxEqualsSpacingRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxEqualsSpacingRule.ts -------------------------------------------------------------------------------- /src/rules/jsxKeyRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxKeyRule.ts -------------------------------------------------------------------------------- /src/rules/jsxNoBindRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxNoBindRule.ts -------------------------------------------------------------------------------- /src/rules/jsxNoLambdaRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxNoLambdaRule.ts -------------------------------------------------------------------------------- /src/rules/jsxNoMultilineJsRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxNoMultilineJsRule.ts -------------------------------------------------------------------------------- /src/rules/jsxNoStringRefRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxNoStringRefRule.ts -------------------------------------------------------------------------------- /src/rules/jsxSelfCloseRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxSelfCloseRule.ts -------------------------------------------------------------------------------- /src/rules/jsxSpaceBeforeTrailingSlashRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxSpaceBeforeTrailingSlashRule.ts -------------------------------------------------------------------------------- /src/rules/jsxUseTranslationFunctionRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxUseTranslationFunctionRule.ts -------------------------------------------------------------------------------- /src/rules/jsxWhitespaceLiteralRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxWhitespaceLiteralRule.ts -------------------------------------------------------------------------------- /src/rules/jsxWrapMultilineRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/jsxWrapMultilineRule.ts -------------------------------------------------------------------------------- /src/rules/reactNoUnnecessaryFragmentRule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/rules/reactNoUnnecessaryFragmentRule.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/rules/jsx-alignment/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-alignment/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-alignment/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-alignment/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-ban-elements/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-ban-elements/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-ban-elements/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-ban-elements/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-ban-props/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-ban-props/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-ban-props/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-ban-props/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-boolean-value/always/test.tsx.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-boolean-value/always/test.tsx.fix -------------------------------------------------------------------------------- /test/rules/jsx-boolean-value/always/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-boolean-value/always/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-boolean-value/always/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-boolean-value/always/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-boolean-value/false/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-boolean-value/false/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-boolean-value/false/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-boolean-value/false/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-boolean-value/never/test.tsx.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-boolean-value/never/test.tsx.fix -------------------------------------------------------------------------------- /test/rules/jsx-boolean-value/never/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-boolean-value/never/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-boolean-value/never/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-boolean-value/never/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-boolean-value/true/test.tsx.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-boolean-value/true/test.tsx.fix -------------------------------------------------------------------------------- /test/rules/jsx-boolean-value/true/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-boolean-value/true/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-boolean-value/true/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-boolean-value/true/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-curly-brace-presence/always/test.tsx.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-brace-presence/always/test.tsx.fix -------------------------------------------------------------------------------- /test/rules/jsx-curly-brace-presence/always/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-brace-presence/always/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-curly-brace-presence/always/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-brace-presence/always/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-curly-brace-presence/default/test.tsx.fix: -------------------------------------------------------------------------------- 1 | const e1 = (
some text
); 2 | -------------------------------------------------------------------------------- /test/rules/jsx-curly-brace-presence/default/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-brace-presence/default/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-curly-brace-presence/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-brace-presence/default/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-curly-brace-presence/never/test.tsx.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-brace-presence/never/test.tsx.fix -------------------------------------------------------------------------------- /test/rules/jsx-curly-brace-presence/never/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-brace-presence/never/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-curly-brace-presence/never/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-brace-presence/never/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-curly-spacing/always/test.tsx.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-spacing/always/test.tsx.fix -------------------------------------------------------------------------------- /test/rules/jsx-curly-spacing/always/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-spacing/always/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-curly-spacing/always/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-spacing/always/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-curly-spacing/never/test.tsx.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-spacing/never/test.tsx.fix -------------------------------------------------------------------------------- /test/rules/jsx-curly-spacing/never/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-spacing/never/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-curly-spacing/never/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-curly-spacing/never/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-equals-spacing/always/test.tsx.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-equals-spacing/always/test.tsx.fix -------------------------------------------------------------------------------- /test/rules/jsx-equals-spacing/always/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-equals-spacing/always/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-equals-spacing/always/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-equals-spacing/always/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-equals-spacing/never/test.tsx.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-equals-spacing/never/test.tsx.fix -------------------------------------------------------------------------------- /test/rules/jsx-equals-spacing/never/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-equals-spacing/never/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-equals-spacing/never/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-equals-spacing/never/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-key/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-key/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-key/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-key/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-no-bind/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-no-bind/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-no-bind/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-no-bind/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-no-lambda/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-no-lambda/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-no-lambda/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-no-lambda/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-no-multiline-js/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-no-multiline-js/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-no-multiline-js/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-no-multiline-js/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-no-string-ref/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-no-string-ref/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-no-string-ref/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-no-string-ref/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-self-close/test.lint.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-self-close/test.lint.fix -------------------------------------------------------------------------------- /test/rules/jsx-self-close/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-self-close/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-self-close/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-self-close/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-space-before-trailing-slash/test.tsx.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-space-before-trailing-slash/test.tsx.fix -------------------------------------------------------------------------------- /test/rules/jsx-space-before-trailing-slash/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-space-before-trailing-slash/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-space-before-trailing-slash/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-space-before-trailing-slash/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-use-translation-function/allow-both/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-use-translation-function/allow-both/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-use-translation-function/allow-both/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-use-translation-function/allow-both/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-use-translation-function/allow-htmlentities/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-use-translation-function/allow-htmlentities/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-use-translation-function/allow-htmlentities/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-use-translation-function/allow-htmlentities/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-use-translation-function/allow-punctuation/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-use-translation-function/allow-punctuation/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-use-translation-function/allow-punctuation/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-use-translation-function/allow-punctuation/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-use-translation-function/default/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-use-translation-function/default/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-use-translation-function/default/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-use-translation-function/default/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-whitespace-literal/test.tsx.fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-whitespace-literal/test.tsx.fix -------------------------------------------------------------------------------- /test/rules/jsx-whitespace-literal/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-whitespace-literal/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-whitespace-literal/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-whitespace-literal/tslint.json -------------------------------------------------------------------------------- /test/rules/jsx-wrap-multiline/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-wrap-multiline/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/jsx-wrap-multiline/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/jsx-wrap-multiline/tslint.json -------------------------------------------------------------------------------- /test/rules/react-no-unnecessary-fragment/test.tsx.lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/react-no-unnecessary-fragment/test.tsx.lint -------------------------------------------------------------------------------- /test/rules/react-no-unnecessary-fragment/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/test/rules/react-no-unnecessary-fragment/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/tslint-react.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palantir/tslint-react/HEAD/yarn.lock --------------------------------------------------------------------------------