├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── new-analyzer-diagnostics.md └── workflows │ └── automatic-release.yml ├── .gitignore ├── LICENSE ├── README.md ├── Source ├── NuGet.config ├── UdonRabbit.Analyzer.CodeFixes │ ├── Abstractions │ │ └── CodeFixProviderBase.cs │ ├── CodeFixResources.Designer.cs │ ├── CodeFixResources.resx │ ├── Extensions │ │ ├── DocumentExtensions.cs │ │ └── SemanticModelExtensions.cs │ ├── InvalidTargetPropertyForFieldChangeCallbackCodeFixProvider.cs │ ├── MethodCalledByCustomNetworkEventMustBePublicCodeFixProvider.cs │ ├── MethodCalledOverTheNetworkCannotStartWithUnderscoreCodeFixProvider.cs │ ├── MethodOfGetComponentIsCurrentlyBrokenInUdonCodeFixProvider.cs │ ├── MethodSpecifyForSendCustomEventIsNotFoundInBehaviourCodeFixProvider.cs │ ├── MethodSpecifyForSendCustomNetworkEventMustBePublicCodeFixProvider.cs │ ├── NotAllowDirectlySetValueWithFieldChangeCallbackCodeFixProvider.cs │ ├── NotSupportLinearInterpolationOfSyncedTypeCodeFixProvider.cs │ ├── NotSupportNamespaceAliasDirectiveCodeFixProvider.cs │ ├── NotSupportSmoothInterpolationOfSyncedTypeCodeFixProvider.cs │ ├── NotSupportStaticUsingDirectiveCodeFixProvider.cs │ └── UdonRabbit.Analyzer.CodeFixes.csproj ├── UdonRabbit.Analyzer.CodeGen │ ├── AnalyzerCategory.cs │ ├── AnalyzerSeverity.cs │ ├── CommandLineOptions.cs │ ├── Program.cs │ └── UdonRabbit.Analyzer.CodeGen.csproj ├── UdonRabbit.Analyzer.Package │ ├── UdonRabbit.Analyzer.Package.csproj │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 ├── UdonRabbit.Analyzer.Test │ ├── FieldAccessorIsNotExposedToUdonTest.cs │ ├── Infrastructure │ │ ├── CodeFixVerifier.cs │ │ ├── Comparision.cs │ │ ├── DiagnosticVerifier.cs │ │ └── TestUnityProject.cs │ ├── InvalidTargetPropertyForFieldChangeCallbackTest.cs │ ├── MethodCalledByCustomNetworkEventMustBePublicTest.cs │ ├── MethodCalledOverTheNetworkCannotStartWithUnderscoreTest.cs │ ├── MethodIsNotExposedToUdonTest.cs │ ├── MethodOfGetComponentIsCurrentlyBrokenInUdonTest.cs │ ├── MethodSpecifyForSendCustomEventIsNotFoundInBehaviourTest.cs │ ├── MethodSpecifyForSendCustomNetworkEventCannotStartWithUnderscoreTest.cs │ ├── MethodSpecifyForSendCustomNetworkEventMustBePublicTest.cs │ ├── NotAllowDirectlySetValueWithFieldChangeCallbackTest.cs │ ├── NotSupportAsKeywordInExpressionTest.cs │ ├── NotSupportAwakeTest.cs │ ├── NotSupportBaseTypeCallingTest.cs │ ├── NotSupportCSharp71LanguageFeaturesTest.cs │ ├── NotSupportCSharp72LanguageFeaturesTest.cs │ ├── NotSupportConstructorsTest.cs │ ├── NotSupportDefaultArgumentsOrParamsArgumentsTest.cs │ ├── NotSupportDefaultExpressionsTest.cs │ ├── NotSupportGotoTest.cs │ ├── NotSupportInParametersInUserDefinedMethodsTest.cs │ ├── NotSupportInheritingFromInterfacesTest.cs │ ├── NotSupportIsKeywordInExpressionTest.cs │ ├── NotSupportIsPatternKeywordInExpressionTest.cs │ ├── NotSupportLabeledStatementTest.cs │ ├── NotSupportLinearInterpolationOfSyncedTypeTest.cs │ ├── NotSupportMethodParametersOfTypeTest.cs │ ├── NotSupportMultidimensionalArrayAccessTest.cs │ ├── NotSupportMultidimensionalArraysTest.cs │ ├── NotSupportNamespaceAliasDirectiveTest.cs │ ├── NotSupportNullConditionalOperatorsTest.cs │ ├── NotSupportNullableTypesTest.cs │ ├── NotSupportObjectInitializerTest.cs │ ├── NotSupportOutParametersInUserDefinedMethodsTest.cs │ ├── NotSupportPropertyInitializersTest.cs │ ├── NotSupportRefParametersInUserDefinedMethodsTest.cs │ ├── NotSupportReturnsValuesOfTypeTest.cs │ ├── NotSupportSmoothInterpolationOfSyncedTypeTest.cs │ ├── NotSupportStaticFieldsTest.cs │ ├── NotSupportStaticMethodDeclarationTest.cs │ ├── NotSupportStaticPropertyDeclarationTest.cs │ ├── NotSupportStaticUsingDirectiveTest.cs │ ├── NotSupportSyncingOfTypeTest.cs │ ├── NotSupportThrowingExceptionsTest.cs │ ├── NotSupportTryCatchFinallyTest.cs │ ├── NotSupportTypeofInUserDefinedTypesTest.cs │ ├── NotSupportUserPropertyDeclarationsTest.cs │ ├── NotSupportVariableTweeningWhenBehaviourIsManualSyncModeTest.cs │ ├── NotSupportVariablesOfTypeTest.cs │ ├── OnlyOneClassDeclarationPerFileTest.cs │ ├── OnlyOneFieldMayTargetPropertyTest.cs │ ├── OnlySupportSyncingArrayTypeInManualSyncModeTest.cs │ ├── OnlySupportsOneTypeGenericsTest.cs │ ├── TypesMustMatchBetweenPropertyAndVariableChangeFieldTest.cs │ └── UdonRabbit.Analyzer.Test.csproj ├── UdonRabbit.Analyzer.UnityPackage │ ├── .gitignore │ ├── .vsconfig │ ├── Assets │ │ ├── NatsunekoLaboratory.meta │ │ ├── NatsunekoLaboratory │ │ │ ├── UdonRabbit.meta │ │ │ └── UdonRabbit │ │ │ │ ├── Analyzer.meta │ │ │ │ └── Analyzer │ │ │ │ ├── Editor.meta │ │ │ │ ├── Editor │ │ │ │ ├── NatsunekoLaboratory.UdonRabbit.Analyzer.asmdef │ │ │ │ ├── NatsunekoLaboratory.UdonRabbit.Analyzer.asmdef.meta │ │ │ │ ├── SolutionGeneratorHook.cs │ │ │ │ └── SolutionGeneratorHook.cs.meta │ │ │ │ ├── Plugins.meta │ │ │ │ └── Plugins │ │ │ │ ├── .gitignore │ │ │ │ ├── UdonRabbit.Analyzer.CodeFixes.dll.meta │ │ │ │ └── UdonRabbit.Analyzer.dll.meta │ │ ├── Scenes.meta │ │ └── Scenes │ │ │ ├── SampleScene.unity │ │ │ └── SampleScene.unity.meta │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityConnectSettings.asset │ │ └── VFXManager.asset ├── UdonRabbit.Analyzer.VisualStudio.2019 │ ├── UdonRabbit.Analyzer.VisualStudio.2019.csproj │ └── source.extension.vsixmanifest ├── UdonRabbit.Analyzer.VisualStudio.2022 │ ├── UdonRabbit.Analyzer.VisualStudio.2022.csproj │ └── source.extension.vsixmanifest ├── UdonRabbit.Analyzer.VisualStudioCode │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── .yarnrc │ ├── CHANGELOG.md │ ├── README.md │ ├── externals │ │ └── .gitkeep │ ├── package.json │ ├── src │ │ ├── extension.ts │ │ ├── omnisharp.ts │ │ ├── test │ │ │ ├── runTest.ts │ │ │ └── suite │ │ │ │ ├── extension.test.ts │ │ │ │ └── index.ts │ │ └── workspace.ts │ ├── tsconfig.json │ └── yarn.lock ├── UdonRabbit.Analyzer.sln └── UdonRabbit.Analyzer │ ├── Compiler │ └── IsExternalInit.cs │ ├── Extensions │ ├── DictionaryExtensions.cs │ ├── EnumerableExtensions.cs │ ├── ExpressionSyntaxExtensions.cs │ ├── FieldDeclarationSyntaxExtensions.cs │ ├── ITypeSymbolExtensions.cs │ ├── MetadataReferenceExtensions.cs │ ├── MethodDeclarationSyntaxExtensions.cs │ ├── SemanticModelExtensions.cs │ ├── StringExtensions.cs │ └── TypeExtensions.cs │ ├── FieldAccessorIsNotExposedToUdon.cs │ ├── InvalidTargetPropertyForFieldChangeCallback.cs │ ├── MethodCalledByCustomNetworkEventMustBePublic.cs │ ├── MethodCalledOverTheNetworkCannotStartWithUnderscore.cs │ ├── MethodIsNotExposedToUdon.cs │ ├── MethodOfGetComponentIsCurrentlyBrokenInUdon.cs │ ├── MethodSpecifyForSendCustomEventIsNotFoundInBehaviour.cs │ ├── MethodSpecifyForSendCustomNetworkEventCannotStartWithUnderscore.cs │ ├── MethodSpecifyForSendCustomNetworkEventMustBePublic.cs │ ├── Models │ └── SyntaxNodeWithSymbol.cs │ ├── NotAllowDirectlySetValueWithFieldChangeCallback.cs │ ├── NotSupportAsKeywordInExpression.cs │ ├── NotSupportAwake.cs │ ├── NotSupportBaseTypeCalling.cs │ ├── NotSupportCSharp71LanguageFeatures.cs │ ├── NotSupportCSharp72LanguageFeatures.cs │ ├── NotSupportConstructors.cs │ ├── NotSupportDefaultArgumentsOrParamsArguments.cs │ ├── NotSupportDefaultExpressions.cs │ ├── NotSupportGoto.cs │ ├── NotSupportInParametersInUserDefinedMethods.cs │ ├── NotSupportInheritingFromInterfaces.cs │ ├── NotSupportIsKeywordInExpression.cs │ ├── NotSupportIsPatternKeywordInExpression.cs │ ├── NotSupportLabeledStatement.cs │ ├── NotSupportLinearInterpolationOfSyncedType.cs │ ├── NotSupportMethodParametersOfType.cs │ ├── NotSupportMultidimensionalArrayAccess.cs │ ├── NotSupportMultidimensionalArrays.cs │ ├── NotSupportNamespaceAliasDirective.cs │ ├── NotSupportNullConditionalOperators.cs │ ├── NotSupportNullableTypes.cs │ ├── NotSupportObjectInitializer.cs │ ├── NotSupportOutParametersInUserDefinedMethods.cs │ ├── NotSupportPropertyInitializers.cs │ ├── NotSupportRefParametersInUserDefinedMethods.cs │ ├── NotSupportReturnsValuesOfType.cs │ ├── NotSupportSmoothInterpolationOfSyncedType.cs │ ├── NotSupportStaticFields.cs │ ├── NotSupportStaticMethodDeclaration.cs │ ├── NotSupportStaticPropertyDeclaration.cs │ ├── NotSupportStaticUsingDirective.cs │ ├── NotSupportSyncingOfType.cs │ ├── NotSupportThrowingExceptions.cs │ ├── NotSupportTryCatchFinally.cs │ ├── NotSupportTypeofInUserDefinedTypes.cs │ ├── NotSupportUserPropertyDeclarations.cs │ ├── NotSupportVariableTweeningWhenBehaviourIsManualSyncMode.cs │ ├── NotSupportVariablesOfType.cs │ ├── OnlyOneClassDeclarationPerFile.cs │ ├── OnlyOneFieldMayTargetProperty.cs │ ├── OnlySupportSyncingArrayTypeInManualSyncMode.cs │ ├── OnlySupportsOneTypeGenerics.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── TypesMustMatchBetweenPropertyAndVariableChangeField.cs │ ├── Udon │ ├── Reflection │ │ ├── UdonEditorManager.cs │ │ └── UdonNetworkTypes.cs │ ├── UdonAssemblyLoader.cs │ ├── UdonAssemblyResolver.cs │ ├── UdonAssemblyVersion.cs │ ├── UdonConstants.cs │ ├── UdonMethodInvoker.cs │ ├── UdonSharpBehaviourUtility.cs │ └── UdonSymbols.cs │ └── UdonRabbit.Analyzer.csproj └── docs ├── analyzers ├── README.md ├── URA0001.md ├── URA0002.md ├── URA0003.md ├── URA0004.md ├── URA0005.md ├── URA0006.md ├── URA0007.md ├── URA0008.md ├── URA0009.md ├── URA0010.md ├── URA0011.md ├── URA0012.md ├── URA0013.md ├── URA0014.md ├── URA0015.md ├── URA0016.md ├── URA0017.md ├── URA0018.md ├── URA0019.md ├── URA0020.md ├── URA0021.md ├── URA0022.md ├── URA0023.md ├── URA0024.md ├── URA0025.md ├── URA0026.md ├── URA0027.md ├── URA0028.md ├── URA0029.md ├── URA0030.md ├── URA0031.md ├── URA0032.md ├── URA0033.md ├── URA0034.md ├── URA0035.md ├── URA0036.md ├── URA0037.md ├── URA0038.md ├── URA0039.md ├── URA0040.md ├── URA0041.md ├── URA0042.md ├── URA0043.md ├── URA0044.md ├── URA0045.md ├── URA0046.md ├── URA0047.md ├── URA0048.md ├── URA0049.md ├── URA0050.md ├── URA0051.md ├── URA0052.md ├── URA0053.md ├── URA0054.md ├── URA0055.md └── URA9999.md └── getting-started ├── omnisharp.md ├── rider.md ├── unity-workspace.md ├── visual-studio.md └── vscode.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-analyzer-diagnostics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/.github/ISSUE_TEMPLATE/new-analyzer-diagnostics.md -------------------------------------------------------------------------------- /.github/workflows/automatic-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/.github/workflows/automatic-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/README.md -------------------------------------------------------------------------------- /Source/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/NuGet.config -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/Abstractions/CodeFixProviderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/Abstractions/CodeFixProviderBase.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/CodeFixResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/CodeFixResources.Designer.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/CodeFixResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/CodeFixResources.resx -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/Extensions/DocumentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/Extensions/DocumentExtensions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/Extensions/SemanticModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/Extensions/SemanticModelExtensions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/InvalidTargetPropertyForFieldChangeCallbackCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/InvalidTargetPropertyForFieldChangeCallbackCodeFixProvider.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/MethodCalledByCustomNetworkEventMustBePublicCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/MethodCalledByCustomNetworkEventMustBePublicCodeFixProvider.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/MethodCalledOverTheNetworkCannotStartWithUnderscoreCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/MethodCalledOverTheNetworkCannotStartWithUnderscoreCodeFixProvider.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/MethodOfGetComponentIsCurrentlyBrokenInUdonCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/MethodOfGetComponentIsCurrentlyBrokenInUdonCodeFixProvider.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/MethodSpecifyForSendCustomEventIsNotFoundInBehaviourCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/MethodSpecifyForSendCustomEventIsNotFoundInBehaviourCodeFixProvider.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/MethodSpecifyForSendCustomNetworkEventMustBePublicCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/MethodSpecifyForSendCustomNetworkEventMustBePublicCodeFixProvider.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/NotAllowDirectlySetValueWithFieldChangeCallbackCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/NotAllowDirectlySetValueWithFieldChangeCallbackCodeFixProvider.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/NotSupportLinearInterpolationOfSyncedTypeCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/NotSupportLinearInterpolationOfSyncedTypeCodeFixProvider.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/NotSupportNamespaceAliasDirectiveCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/NotSupportNamespaceAliasDirectiveCodeFixProvider.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/NotSupportSmoothInterpolationOfSyncedTypeCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/NotSupportSmoothInterpolationOfSyncedTypeCodeFixProvider.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/NotSupportStaticUsingDirectiveCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/NotSupportStaticUsingDirectiveCodeFixProvider.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeFixes/UdonRabbit.Analyzer.CodeFixes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeFixes/UdonRabbit.Analyzer.CodeFixes.csproj -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeGen/AnalyzerCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeGen/AnalyzerCategory.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeGen/AnalyzerSeverity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeGen/AnalyzerSeverity.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeGen/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeGen/CommandLineOptions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeGen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeGen/Program.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.CodeGen/UdonRabbit.Analyzer.CodeGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.CodeGen/UdonRabbit.Analyzer.CodeGen.csproj -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Package/UdonRabbit.Analyzer.Package.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Package/UdonRabbit.Analyzer.Package.csproj -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Package/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Package/tools/install.ps1 -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Package/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Package/tools/uninstall.ps1 -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/FieldAccessorIsNotExposedToUdonTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/FieldAccessorIsNotExposedToUdonTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/Infrastructure/CodeFixVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/Infrastructure/CodeFixVerifier.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/Infrastructure/Comparision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/Infrastructure/Comparision.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/Infrastructure/DiagnosticVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/Infrastructure/DiagnosticVerifier.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/Infrastructure/TestUnityProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/Infrastructure/TestUnityProject.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/InvalidTargetPropertyForFieldChangeCallbackTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/InvalidTargetPropertyForFieldChangeCallbackTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/MethodCalledByCustomNetworkEventMustBePublicTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/MethodCalledByCustomNetworkEventMustBePublicTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/MethodCalledOverTheNetworkCannotStartWithUnderscoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/MethodCalledOverTheNetworkCannotStartWithUnderscoreTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/MethodIsNotExposedToUdonTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/MethodIsNotExposedToUdonTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/MethodOfGetComponentIsCurrentlyBrokenInUdonTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/MethodOfGetComponentIsCurrentlyBrokenInUdonTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/MethodSpecifyForSendCustomEventIsNotFoundInBehaviourTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/MethodSpecifyForSendCustomEventIsNotFoundInBehaviourTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/MethodSpecifyForSendCustomNetworkEventCannotStartWithUnderscoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/MethodSpecifyForSendCustomNetworkEventCannotStartWithUnderscoreTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/MethodSpecifyForSendCustomNetworkEventMustBePublicTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/MethodSpecifyForSendCustomNetworkEventMustBePublicTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotAllowDirectlySetValueWithFieldChangeCallbackTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotAllowDirectlySetValueWithFieldChangeCallbackTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportAsKeywordInExpressionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportAsKeywordInExpressionTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportAwakeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportAwakeTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportBaseTypeCallingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportBaseTypeCallingTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportCSharp71LanguageFeaturesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportCSharp71LanguageFeaturesTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportCSharp72LanguageFeaturesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportCSharp72LanguageFeaturesTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportConstructorsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportConstructorsTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportDefaultArgumentsOrParamsArgumentsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportDefaultArgumentsOrParamsArgumentsTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportDefaultExpressionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportDefaultExpressionsTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportGotoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportGotoTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportInParametersInUserDefinedMethodsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportInParametersInUserDefinedMethodsTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportInheritingFromInterfacesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportInheritingFromInterfacesTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportIsKeywordInExpressionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportIsKeywordInExpressionTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportIsPatternKeywordInExpressionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportIsPatternKeywordInExpressionTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportLabeledStatementTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportLabeledStatementTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportLinearInterpolationOfSyncedTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportLinearInterpolationOfSyncedTypeTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportMethodParametersOfTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportMethodParametersOfTypeTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportMultidimensionalArrayAccessTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportMultidimensionalArrayAccessTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportMultidimensionalArraysTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportMultidimensionalArraysTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportNamespaceAliasDirectiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportNamespaceAliasDirectiveTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportNullConditionalOperatorsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportNullConditionalOperatorsTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportNullableTypesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportNullableTypesTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportObjectInitializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportObjectInitializerTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportOutParametersInUserDefinedMethodsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportOutParametersInUserDefinedMethodsTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportPropertyInitializersTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportPropertyInitializersTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportRefParametersInUserDefinedMethodsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportRefParametersInUserDefinedMethodsTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportReturnsValuesOfTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportReturnsValuesOfTypeTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportSmoothInterpolationOfSyncedTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportSmoothInterpolationOfSyncedTypeTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportStaticFieldsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportStaticFieldsTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportStaticMethodDeclarationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportStaticMethodDeclarationTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportStaticPropertyDeclarationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportStaticPropertyDeclarationTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportStaticUsingDirectiveTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportStaticUsingDirectiveTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportSyncingOfTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportSyncingOfTypeTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportThrowingExceptionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportThrowingExceptionsTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportTryCatchFinallyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportTryCatchFinallyTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportTypeofInUserDefinedTypesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportTypeofInUserDefinedTypesTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportUserPropertyDeclarationsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportUserPropertyDeclarationsTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportVariableTweeningWhenBehaviourIsManualSyncModeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportVariableTweeningWhenBehaviourIsManualSyncModeTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/NotSupportVariablesOfTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/NotSupportVariablesOfTypeTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/OnlyOneClassDeclarationPerFileTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/OnlyOneClassDeclarationPerFileTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/OnlyOneFieldMayTargetPropertyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/OnlyOneFieldMayTargetPropertyTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/OnlySupportSyncingArrayTypeInManualSyncModeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/OnlySupportSyncingArrayTypeInManualSyncModeTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/OnlySupportsOneTypeGenericsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/OnlySupportsOneTypeGenericsTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/TypesMustMatchBetweenPropertyAndVariableChangeFieldTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/TypesMustMatchBetweenPropertyAndVariableChangeFieldTest.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.Test/UdonRabbit.Analyzer.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.Test/UdonRabbit.Analyzer.Test.csproj -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/.gitignore -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/.vsconfig -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory.meta -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit.meta -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer.meta -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Editor.meta -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Editor/NatsunekoLaboratory.UdonRabbit.Analyzer.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Editor/NatsunekoLaboratory.UdonRabbit.Analyzer.asmdef -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Editor/NatsunekoLaboratory.UdonRabbit.Analyzer.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Editor/NatsunekoLaboratory.UdonRabbit.Analyzer.asmdef.meta -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Editor/SolutionGeneratorHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Editor/SolutionGeneratorHook.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Editor/SolutionGeneratorHook.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Editor/SolutionGeneratorHook.cs.meta -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Plugins.meta -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Plugins/.gitignore: -------------------------------------------------------------------------------- 1 | *.dll -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Plugins/UdonRabbit.Analyzer.CodeFixes.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Plugins/UdonRabbit.Analyzer.CodeFixes.dll.meta -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Plugins/UdonRabbit.Analyzer.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/NatsunekoLaboratory/UdonRabbit/Analyzer/Plugins/UdonRabbit.Analyzer.dll.meta -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/Scenes.meta -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/Scenes/SampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/Scenes/SampleScene.unity -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/Assets/Scenes/SampleScene.unity.meta -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.4.20f1 2 | -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.UnityPackage/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudio.2019/UdonRabbit.Analyzer.VisualStudio.2019.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudio.2019/UdonRabbit.Analyzer.VisualStudio.2019.csproj -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudio.2019/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudio.2019/source.extension.vsixmanifest -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudio.2022/UdonRabbit.Analyzer.VisualStudio.2022.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudio.2022/UdonRabbit.Analyzer.VisualStudio.2022.csproj -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudio.2022/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudio.2022/source.extension.vsixmanifest -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/.eslintrc.json -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/.gitignore: -------------------------------------------------------------------------------- 1 | *.dll 2 | *.vsix 3 | out/ -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 180 3 | } 4 | -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/.vscode/extensions.json -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/.vscode/launch.json -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/.vscode/settings.json -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/.vscode/tasks.json -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/.vscodeignore -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/.yarnrc: -------------------------------------------------------------------------------- 1 | --ignore-engines true -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/CHANGELOG.md -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/README.md -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/externals/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/package.json -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/src/extension.ts -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/src/omnisharp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/src/omnisharp.ts -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/src/test/runTest.ts -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/src/test/suite/index.ts -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/src/workspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/src/workspace.ts -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/tsconfig.json -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.VisualStudioCode/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.VisualStudioCode/yarn.lock -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer.sln -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Compiler/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Compiler/IsExternalInit.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Extensions/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Extensions/DictionaryExtensions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Extensions/ExpressionSyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Extensions/ExpressionSyntaxExtensions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Extensions/FieldDeclarationSyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Extensions/FieldDeclarationSyntaxExtensions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Extensions/ITypeSymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Extensions/ITypeSymbolExtensions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Extensions/MetadataReferenceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Extensions/MetadataReferenceExtensions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Extensions/MethodDeclarationSyntaxExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Extensions/MethodDeclarationSyntaxExtensions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Extensions/SemanticModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Extensions/SemanticModelExtensions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/FieldAccessorIsNotExposedToUdon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/FieldAccessorIsNotExposedToUdon.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/InvalidTargetPropertyForFieldChangeCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/InvalidTargetPropertyForFieldChangeCallback.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/MethodCalledByCustomNetworkEventMustBePublic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/MethodCalledByCustomNetworkEventMustBePublic.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/MethodCalledOverTheNetworkCannotStartWithUnderscore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/MethodCalledOverTheNetworkCannotStartWithUnderscore.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/MethodIsNotExposedToUdon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/MethodIsNotExposedToUdon.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/MethodOfGetComponentIsCurrentlyBrokenInUdon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/MethodOfGetComponentIsCurrentlyBrokenInUdon.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/MethodSpecifyForSendCustomEventIsNotFoundInBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/MethodSpecifyForSendCustomEventIsNotFoundInBehaviour.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/MethodSpecifyForSendCustomNetworkEventCannotStartWithUnderscore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/MethodSpecifyForSendCustomNetworkEventCannotStartWithUnderscore.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/MethodSpecifyForSendCustomNetworkEventMustBePublic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/MethodSpecifyForSendCustomNetworkEventMustBePublic.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Models/SyntaxNodeWithSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Models/SyntaxNodeWithSymbol.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotAllowDirectlySetValueWithFieldChangeCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotAllowDirectlySetValueWithFieldChangeCallback.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportAsKeywordInExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportAsKeywordInExpression.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportAwake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportAwake.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportBaseTypeCalling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportBaseTypeCalling.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportCSharp71LanguageFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportCSharp71LanguageFeatures.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportCSharp72LanguageFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportCSharp72LanguageFeatures.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportConstructors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportConstructors.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportDefaultArgumentsOrParamsArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportDefaultArgumentsOrParamsArguments.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportDefaultExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportDefaultExpressions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportGoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportGoto.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportInParametersInUserDefinedMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportInParametersInUserDefinedMethods.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportInheritingFromInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportInheritingFromInterfaces.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportIsKeywordInExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportIsKeywordInExpression.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportIsPatternKeywordInExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportIsPatternKeywordInExpression.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportLabeledStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportLabeledStatement.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportLinearInterpolationOfSyncedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportLinearInterpolationOfSyncedType.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportMethodParametersOfType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportMethodParametersOfType.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportMultidimensionalArrayAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportMultidimensionalArrayAccess.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportMultidimensionalArrays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportMultidimensionalArrays.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportNamespaceAliasDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportNamespaceAliasDirective.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportNullConditionalOperators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportNullConditionalOperators.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportNullableTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportNullableTypes.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportObjectInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportObjectInitializer.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportOutParametersInUserDefinedMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportOutParametersInUserDefinedMethods.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportPropertyInitializers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportPropertyInitializers.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportRefParametersInUserDefinedMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportRefParametersInUserDefinedMethods.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportReturnsValuesOfType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportReturnsValuesOfType.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportSmoothInterpolationOfSyncedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportSmoothInterpolationOfSyncedType.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportStaticFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportStaticFields.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportStaticMethodDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportStaticMethodDeclaration.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportStaticPropertyDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportStaticPropertyDeclaration.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportStaticUsingDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportStaticUsingDirective.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportSyncingOfType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportSyncingOfType.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportThrowingExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportThrowingExceptions.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportTryCatchFinally.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportTryCatchFinally.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportTypeofInUserDefinedTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportTypeofInUserDefinedTypes.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportUserPropertyDeclarations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportUserPropertyDeclarations.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportVariableTweeningWhenBehaviourIsManualSyncMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportVariableTweeningWhenBehaviourIsManualSyncMode.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/NotSupportVariablesOfType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/NotSupportVariablesOfType.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/OnlyOneClassDeclarationPerFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/OnlyOneClassDeclarationPerFile.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/OnlyOneFieldMayTargetProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/OnlyOneFieldMayTargetProperty.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/OnlySupportSyncingArrayTypeInManualSyncMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/OnlySupportSyncingArrayTypeInManualSyncMode.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/OnlySupportsOneTypeGenerics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/OnlySupportsOneTypeGenerics.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Resources.Designer.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Resources.resx -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/TypesMustMatchBetweenPropertyAndVariableChangeField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/TypesMustMatchBetweenPropertyAndVariableChangeField.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Udon/Reflection/UdonEditorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Udon/Reflection/UdonEditorManager.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Udon/Reflection/UdonNetworkTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Udon/Reflection/UdonNetworkTypes.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Udon/UdonAssemblyLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Udon/UdonAssemblyLoader.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Udon/UdonAssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Udon/UdonAssemblyResolver.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Udon/UdonAssemblyVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Udon/UdonAssemblyVersion.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Udon/UdonConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Udon/UdonConstants.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Udon/UdonMethodInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Udon/UdonMethodInvoker.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Udon/UdonSharpBehaviourUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Udon/UdonSharpBehaviourUtility.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/Udon/UdonSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/Udon/UdonSymbols.cs -------------------------------------------------------------------------------- /Source/UdonRabbit.Analyzer/UdonRabbit.Analyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/Source/UdonRabbit.Analyzer/UdonRabbit.Analyzer.csproj -------------------------------------------------------------------------------- /docs/analyzers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/README.md -------------------------------------------------------------------------------- /docs/analyzers/URA0001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0001.md -------------------------------------------------------------------------------- /docs/analyzers/URA0002.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0002.md -------------------------------------------------------------------------------- /docs/analyzers/URA0003.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0003.md -------------------------------------------------------------------------------- /docs/analyzers/URA0004.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0004.md -------------------------------------------------------------------------------- /docs/analyzers/URA0005.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0005.md -------------------------------------------------------------------------------- /docs/analyzers/URA0006.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0006.md -------------------------------------------------------------------------------- /docs/analyzers/URA0007.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0007.md -------------------------------------------------------------------------------- /docs/analyzers/URA0008.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0008.md -------------------------------------------------------------------------------- /docs/analyzers/URA0009.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0009.md -------------------------------------------------------------------------------- /docs/analyzers/URA0010.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0010.md -------------------------------------------------------------------------------- /docs/analyzers/URA0011.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0011.md -------------------------------------------------------------------------------- /docs/analyzers/URA0012.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0012.md -------------------------------------------------------------------------------- /docs/analyzers/URA0013.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0013.md -------------------------------------------------------------------------------- /docs/analyzers/URA0014.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0014.md -------------------------------------------------------------------------------- /docs/analyzers/URA0015.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0015.md -------------------------------------------------------------------------------- /docs/analyzers/URA0016.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0016.md -------------------------------------------------------------------------------- /docs/analyzers/URA0017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0017.md -------------------------------------------------------------------------------- /docs/analyzers/URA0018.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0018.md -------------------------------------------------------------------------------- /docs/analyzers/URA0019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0019.md -------------------------------------------------------------------------------- /docs/analyzers/URA0020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0020.md -------------------------------------------------------------------------------- /docs/analyzers/URA0021.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0021.md -------------------------------------------------------------------------------- /docs/analyzers/URA0022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0022.md -------------------------------------------------------------------------------- /docs/analyzers/URA0023.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0023.md -------------------------------------------------------------------------------- /docs/analyzers/URA0024.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0024.md -------------------------------------------------------------------------------- /docs/analyzers/URA0025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0025.md -------------------------------------------------------------------------------- /docs/analyzers/URA0026.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0026.md -------------------------------------------------------------------------------- /docs/analyzers/URA0027.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0027.md -------------------------------------------------------------------------------- /docs/analyzers/URA0028.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0028.md -------------------------------------------------------------------------------- /docs/analyzers/URA0029.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0029.md -------------------------------------------------------------------------------- /docs/analyzers/URA0030.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0030.md -------------------------------------------------------------------------------- /docs/analyzers/URA0031.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0031.md -------------------------------------------------------------------------------- /docs/analyzers/URA0032.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0032.md -------------------------------------------------------------------------------- /docs/analyzers/URA0033.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0033.md -------------------------------------------------------------------------------- /docs/analyzers/URA0034.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0034.md -------------------------------------------------------------------------------- /docs/analyzers/URA0035.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0035.md -------------------------------------------------------------------------------- /docs/analyzers/URA0036.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0036.md -------------------------------------------------------------------------------- /docs/analyzers/URA0037.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0037.md -------------------------------------------------------------------------------- /docs/analyzers/URA0038.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0038.md -------------------------------------------------------------------------------- /docs/analyzers/URA0039.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0039.md -------------------------------------------------------------------------------- /docs/analyzers/URA0040.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0040.md -------------------------------------------------------------------------------- /docs/analyzers/URA0041.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0041.md -------------------------------------------------------------------------------- /docs/analyzers/URA0042.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0042.md -------------------------------------------------------------------------------- /docs/analyzers/URA0043.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0043.md -------------------------------------------------------------------------------- /docs/analyzers/URA0044.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0044.md -------------------------------------------------------------------------------- /docs/analyzers/URA0045.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0045.md -------------------------------------------------------------------------------- /docs/analyzers/URA0046.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0046.md -------------------------------------------------------------------------------- /docs/analyzers/URA0047.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0047.md -------------------------------------------------------------------------------- /docs/analyzers/URA0048.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0048.md -------------------------------------------------------------------------------- /docs/analyzers/URA0049.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0049.md -------------------------------------------------------------------------------- /docs/analyzers/URA0050.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0050.md -------------------------------------------------------------------------------- /docs/analyzers/URA0051.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0051.md -------------------------------------------------------------------------------- /docs/analyzers/URA0052.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0052.md -------------------------------------------------------------------------------- /docs/analyzers/URA0053.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0053.md -------------------------------------------------------------------------------- /docs/analyzers/URA0054.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0054.md -------------------------------------------------------------------------------- /docs/analyzers/URA0055.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA0055.md -------------------------------------------------------------------------------- /docs/analyzers/URA9999.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/analyzers/URA9999.md -------------------------------------------------------------------------------- /docs/getting-started/omnisharp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/getting-started/omnisharp.md -------------------------------------------------------------------------------- /docs/getting-started/rider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/getting-started/rider.md -------------------------------------------------------------------------------- /docs/getting-started/unity-workspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/getting-started/unity-workspace.md -------------------------------------------------------------------------------- /docs/getting-started/visual-studio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/getting-started/visual-studio.md -------------------------------------------------------------------------------- /docs/getting-started/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/esnya/UdonRabbit.Analyzer/HEAD/docs/getting-started/vscode.md --------------------------------------------------------------------------------