├── .circleci └── config.yml ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .husky └── commit-msg ├── .pretterignore ├── .prettierrc ├── LICENSE ├── README.md ├── babel.config.js ├── commitlint.config.js ├── package.json ├── src ├── Autolink.tsx ├── CustomMatch.ts ├── __tests__ │ ├── Autolink.test.tsx │ ├── __snapshots__ │ │ └── Autolink.test.tsx.snap │ └── urls.test.ts ├── index.ts ├── matchers │ ├── __tests__ │ │ ├── location.test.ts │ │ └── phone.test.ts │ ├── index.ts │ ├── location.ts │ └── phone.ts ├── truncate.ts ├── types.ts └── urls.ts ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.pretterignore: -------------------------------------------------------------------------------- 1 | .eslintignore 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/babel.config.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/package.json -------------------------------------------------------------------------------- /src/Autolink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/Autolink.tsx -------------------------------------------------------------------------------- /src/CustomMatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/CustomMatch.ts -------------------------------------------------------------------------------- /src/__tests__/Autolink.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/__tests__/Autolink.test.tsx -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/Autolink.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/__tests__/__snapshots__/Autolink.test.tsx.snap -------------------------------------------------------------------------------- /src/__tests__/urls.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/__tests__/urls.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/matchers/__tests__/location.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/matchers/__tests__/location.test.ts -------------------------------------------------------------------------------- /src/matchers/__tests__/phone.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/matchers/__tests__/phone.test.ts -------------------------------------------------------------------------------- /src/matchers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/matchers/index.ts -------------------------------------------------------------------------------- /src/matchers/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/matchers/location.ts -------------------------------------------------------------------------------- /src/matchers/phone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/matchers/phone.ts -------------------------------------------------------------------------------- /src/truncate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/truncate.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/src/urls.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshswan/react-native-autolink/HEAD/yarn.lock --------------------------------------------------------------------------------