├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── snippets.code-snippets ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── icon.jpg ├── img └── Sreenshot.png ├── package.json ├── scripts └── generateREADME.ts ├── src ├── components │ └── rnpButton.ts ├── extension.ts ├── getExistingImports.ts ├── snip.ts ├── snippets.ts └── utils.ts ├── tsconfig.json └── typings ├── nyc └── index.d.ts └── require-glob └── index.d.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix 3 | build/ -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/README.md -------------------------------------------------------------------------------- /icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/icon.jpg -------------------------------------------------------------------------------- /img/Sreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/img/Sreenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/package.json -------------------------------------------------------------------------------- /scripts/generateREADME.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/scripts/generateREADME.ts -------------------------------------------------------------------------------- /src/components/rnpButton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/src/components/rnpButton.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/getExistingImports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/src/getExistingImports.ts -------------------------------------------------------------------------------- /src/snip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/src/snip.ts -------------------------------------------------------------------------------- /src/snippets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/src/snippets.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/nyc/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/typings/nyc/index.d.ts -------------------------------------------------------------------------------- /typings/require-glob/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-paper-vs-code/HEAD/typings/require-glob/index.d.ts --------------------------------------------------------------------------------