diff --git a/samples/react-avatar/.editorconfig b/samples/react-avatar/.editorconfig new file mode 100644 index 000000000..8ffcdc4ec --- /dev/null +++ b/samples/react-avatar/.editorconfig @@ -0,0 +1,25 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles between different editors and IDEs +# editorconfig.org + +root = true + + +[*] + +# change these settings to your own preference +indent_style = space +indent_size = 2 + +# we recommend you to keep these unchanged +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false + +[{package,bower}.json] +indent_style = space +indent_size = 2 \ No newline at end of file diff --git a/samples/react-avatar/.gitignore b/samples/react-avatar/.gitignore new file mode 100644 index 000000000..b19bbe123 --- /dev/null +++ b/samples/react-avatar/.gitignore @@ -0,0 +1,32 @@ +# Logs +logs +*.log +npm-debug.log* + +# Dependency directories +node_modules + +# Build generated files +dist +lib +solution +temp +*.sppkg + +# Coverage directory used by tools like istanbul +coverage + +# OSX +.DS_Store + +# Visual Studio files +.ntvs_analysis.dat +.vs +bin +obj + +# Resx Generated Code +*.resx.ts + +# Styles Generated Code +*.scss.ts diff --git a/samples/react-avatar/.yo-rc.json b/samples/react-avatar/.yo-rc.json new file mode 100644 index 000000000..6b86a7b45 --- /dev/null +++ b/samples/react-avatar/.yo-rc.json @@ -0,0 +1,12 @@ +{ + "@microsoft/generator-sharepoint": { + "isCreatingSolution": true, + "environment": "spo", + "version": "1.11.0", + "libraryName": "react-avatar", + "libraryId": "b96dfed7-ec48-4082-ba50-f6c7b09143c7", + "packageManager": "npm", + "isDomainIsolated": false, + "componentType": "webpart" + } +}