├── .eslintrc.js ├── .github └── workflows │ └── typescript_and_lint.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs └── Snippets.md ├── images └── logo.png ├── package.json ├── src ├── helpers │ ├── extensionConfig.ts │ ├── formatters.ts │ ├── generateSnippets.ts │ ├── getPrettierConfig.ts │ ├── parseSnippetToBody.ts │ ├── replaceOrRemoveReactImport.ts │ ├── snippetPlaceholders.ts │ └── snippetSearch.ts ├── index.ts ├── snippets │ └── generated.json ├── sourceSnippets │ ├── components.ts │ ├── console.ts │ ├── hooks.ts │ ├── imports.ts │ ├── others.ts │ ├── propTypes.ts │ ├── reactNative.ts │ ├── redux.ts │ ├── sharedSnippets.ts │ ├── tests.ts │ └── typescript.ts └── types.ts ├── tsconfig.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/typescript_and_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/.github/workflows/typescript_and_lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/README.md -------------------------------------------------------------------------------- /docs/Snippets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/docs/Snippets.md -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/images/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/package.json -------------------------------------------------------------------------------- /src/helpers/extensionConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/helpers/extensionConfig.ts -------------------------------------------------------------------------------- /src/helpers/formatters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/helpers/formatters.ts -------------------------------------------------------------------------------- /src/helpers/generateSnippets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/helpers/generateSnippets.ts -------------------------------------------------------------------------------- /src/helpers/getPrettierConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/helpers/getPrettierConfig.ts -------------------------------------------------------------------------------- /src/helpers/parseSnippetToBody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/helpers/parseSnippetToBody.ts -------------------------------------------------------------------------------- /src/helpers/replaceOrRemoveReactImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/helpers/replaceOrRemoveReactImport.ts -------------------------------------------------------------------------------- /src/helpers/snippetPlaceholders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/helpers/snippetPlaceholders.ts -------------------------------------------------------------------------------- /src/helpers/snippetSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/helpers/snippetSearch.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/snippets/generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/snippets/generated.json -------------------------------------------------------------------------------- /src/sourceSnippets/components.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/sourceSnippets/components.ts -------------------------------------------------------------------------------- /src/sourceSnippets/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/sourceSnippets/console.ts -------------------------------------------------------------------------------- /src/sourceSnippets/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/sourceSnippets/hooks.ts -------------------------------------------------------------------------------- /src/sourceSnippets/imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/sourceSnippets/imports.ts -------------------------------------------------------------------------------- /src/sourceSnippets/others.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/sourceSnippets/others.ts -------------------------------------------------------------------------------- /src/sourceSnippets/propTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/sourceSnippets/propTypes.ts -------------------------------------------------------------------------------- /src/sourceSnippets/reactNative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/sourceSnippets/reactNative.ts -------------------------------------------------------------------------------- /src/sourceSnippets/redux.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/sourceSnippets/redux.ts -------------------------------------------------------------------------------- /src/sourceSnippets/sharedSnippets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/sourceSnippets/sharedSnippets.ts -------------------------------------------------------------------------------- /src/sourceSnippets/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/sourceSnippets/tests.ts -------------------------------------------------------------------------------- /src/sourceSnippets/typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/sourceSnippets/typescript.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r5n-labs/vscode-react-javascript-snippets/HEAD/yarn.lock --------------------------------------------------------------------------------