├── .config └── dotnet-tools.json ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── settings.vscode.json ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .paket └── Paket.Restore.targets ├── .travis.yml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── Directory.Build.props ├── LICENSE.md ├── NpgsqlFSharpAnalyzer.sln ├── README.md ├── RELEASE_NOTES.md ├── appveyor.yml ├── docker-compose.yml ├── paket.dependencies ├── paket.lock ├── sql.gif ├── src ├── Directory.Build.props ├── FParsec │ ├── AssemblyInfo.fs │ ├── CharParsers.fs │ ├── CharParsers.fsi │ ├── Emit.fs │ ├── Error.fs │ ├── Error.fsi │ ├── FParsec.fsproj │ ├── Internals.fs │ ├── Primitives.fs │ ├── Primitives.fsi │ ├── Range.fs │ ├── StaticMapping.fs │ └── StaticMapping.fsi ├── FParsecCS │ ├── Buffer.cs │ ├── CaseFoldTable.cs │ ├── CharSet.cs │ ├── CharStream.cs │ ├── CharStreamLT.cs │ ├── Cloning.cs │ ├── ErrorMessage.cs │ ├── ErrorMessageList.cs │ ├── Errors.cs │ ├── FParsecCS.csproj │ ├── FastGenericEqualityERComparer.cs │ ├── HexFloat.cs │ ├── IdentifierValidator.cs │ ├── ManyChars.cs │ ├── OperatorPrecedenceParser.cs │ ├── Position.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Reply.cs │ ├── StringBuffer.cs │ ├── Strings.cs │ ├── Text.cs │ └── UnmanagedMemoryPool.cs ├── NpgsqlFSharpAnalyzer.Core │ ├── AssemblyInfo.fs │ ├── InformationSchema.fs │ ├── NpgsqlFSharpAnalyzer.Core.fsproj │ ├── SqlAnalysis.fs │ ├── SqlAnalyzer.fs │ ├── SyntacticAnalysis.fs │ └── Types.fs ├── NpgsqlFSharpAnalyzer │ ├── AssemblyInfo.fs │ ├── NpgsqlFSharpAnalyzer.fsproj │ ├── SqlAnalyzer.fs │ └── paket.references ├── NpgsqlFSharpParser │ ├── AssemblyInfo.fs │ ├── NpgsqlFSharpParser.fsproj │ ├── Parser.fs │ └── Types.fs ├── NpgsqlFSharpVs │ ├── ContentTypeNames.cs │ ├── FsLintVsPackage.cs │ ├── LintChecker.cs │ ├── LintCheckerProvider.cs │ ├── LintError.cs │ ├── LintProjectInfo.cs │ ├── LintTagger.cs │ ├── NpgsqlFSharpVs.csproj │ ├── Options │ │ └── FsLintOptionsPage.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── GettingStarted.html │ │ ├── License.txt │ │ ├── ReleaseNotes.html │ │ └── logo.png │ ├── SubscriptionManager.cs │ ├── SuggestionPreview.xaml │ ├── SuggestionPreview.xaml.cs │ ├── Suggestions │ │ ├── LintActionsSource.cs │ │ ├── LintFixAction.cs │ │ ├── LintSuggestionProvider.cs │ │ ├── LintSuppressAction.cs │ │ └── LintSuppressBy.cs │ ├── Table │ │ ├── LintTableSnapshotFactory.cs │ │ └── LintingErrorsSnapshot.cs │ ├── paket.references │ └── source.extension.vsixmanifest ├── ParserTestsWithNet48 │ ├── App.config │ ├── ParserTestsWithNet48.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs └── Ubik │ ├── AssemblyInfo.fs │ ├── Program.fs │ ├── Project.fs │ └── Ubik.fsproj └── tests ├── Directory.Build.props ├── NpgsqlFSharpAnalyzer.Tests ├── Analyzer.fs ├── AssemblyInfo.fs ├── Main.fs ├── NpgsqlFSharpAnalyzer.Tests.fsproj ├── ParseDeclareTests.fs ├── ParseDeleteTests.fs ├── ParseInsertTests.fs ├── ParseSelectTests.fs ├── ParseSetTests.fs ├── ParseUpdateTests.fs └── Tests.fs └── examples ├── Directory.Build.props └── hashing ├── AssemblyInfo.fs ├── MultipleNestedModules.fs ├── MultipleNestedModules.fsx ├── SprintfBlock.fs ├── castingNonNullableStaysNonNullable.fs ├── detectingDynamicListsInTransactions.fs ├── detectingEmptyParameterSet.fs ├── errorsInTransactions.fs ├── examples.fsproj ├── executingQueryInsteadOfNonQuery.fs ├── insertQueryWithNonNullableParameter.fs ├── parameterTypeMismatch.fs ├── readAttemptIntegerTypeMismatch.fs ├── readingTextArray.fs ├── readingUuidArray.fs ├── selectWithInnerJoins.fs ├── selectWithNonNullableColumnComparison.fs ├── semanticAnalysis-missingColumn.fs ├── semanticAnalysis-missingParameter.fs ├── semanticAnalysis-redundantParameters.fs ├── semanticAnalysis-typeMismatch.fs ├── syntacticAnalysis-literalStrings.fs ├── syntacticAnalysis.fs ├── syntacticAnalysisExecuteScalar.fs ├── syntacticAnalysisFromLambdaBody.fs ├── syntacticAnalysisFromSingleCaseUnion.fs ├── syntacticAnalysisProcessedList.fs ├── syntacticAnalysisSimpleQuery.fs ├── syntaxAnalysis-detectingSkipAnalysis.fs ├── syntaxAnalysis-usingTransactions.fs ├── syntaxAnalysisReferencingQueryDoesNotGiveError.fs ├── topLevelExpressionIsDetected.fs ├── updateQueryWithParametersInAssignments.fs ├── usingIntArrayParameter.fs ├── usingLiteralQueriesWithTransactions.fs └── usingProcessedParameters.fs /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/settings.vscode.json: -------------------------------------------------------------------------------- 1 | { 2 | "FSharp.fsacRuntime":"netcore" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /.paket/Paket.Restore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.paket/Paket.Restore.targets -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NpgsqlFSharpAnalyzer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/NpgsqlFSharpAnalyzer.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /paket.dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/paket.dependencies -------------------------------------------------------------------------------- /paket.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/paket.lock -------------------------------------------------------------------------------- /sql.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/sql.gif -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/FParsec/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsec/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FParsec/CharParsers.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsec/CharParsers.fs -------------------------------------------------------------------------------- /src/FParsec/CharParsers.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsec/CharParsers.fsi -------------------------------------------------------------------------------- /src/FParsec/Emit.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsec/Emit.fs -------------------------------------------------------------------------------- /src/FParsec/Error.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsec/Error.fs -------------------------------------------------------------------------------- /src/FParsec/Error.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsec/Error.fsi -------------------------------------------------------------------------------- /src/FParsec/FParsec.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsec/FParsec.fsproj -------------------------------------------------------------------------------- /src/FParsec/Internals.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsec/Internals.fs -------------------------------------------------------------------------------- /src/FParsec/Primitives.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsec/Primitives.fs -------------------------------------------------------------------------------- /src/FParsec/Primitives.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsec/Primitives.fsi -------------------------------------------------------------------------------- /src/FParsec/Range.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsec/Range.fs -------------------------------------------------------------------------------- /src/FParsec/StaticMapping.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsec/StaticMapping.fs -------------------------------------------------------------------------------- /src/FParsec/StaticMapping.fsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsec/StaticMapping.fsi -------------------------------------------------------------------------------- /src/FParsecCS/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/Buffer.cs -------------------------------------------------------------------------------- /src/FParsecCS/CaseFoldTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/CaseFoldTable.cs -------------------------------------------------------------------------------- /src/FParsecCS/CharSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/CharSet.cs -------------------------------------------------------------------------------- /src/FParsecCS/CharStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/CharStream.cs -------------------------------------------------------------------------------- /src/FParsecCS/CharStreamLT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/CharStreamLT.cs -------------------------------------------------------------------------------- /src/FParsecCS/Cloning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/Cloning.cs -------------------------------------------------------------------------------- /src/FParsecCS/ErrorMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/ErrorMessage.cs -------------------------------------------------------------------------------- /src/FParsecCS/ErrorMessageList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/ErrorMessageList.cs -------------------------------------------------------------------------------- /src/FParsecCS/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/Errors.cs -------------------------------------------------------------------------------- /src/FParsecCS/FParsecCS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/FParsecCS.csproj -------------------------------------------------------------------------------- /src/FParsecCS/FastGenericEqualityERComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/FastGenericEqualityERComparer.cs -------------------------------------------------------------------------------- /src/FParsecCS/HexFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/HexFloat.cs -------------------------------------------------------------------------------- /src/FParsecCS/IdentifierValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/IdentifierValidator.cs -------------------------------------------------------------------------------- /src/FParsecCS/ManyChars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/ManyChars.cs -------------------------------------------------------------------------------- /src/FParsecCS/OperatorPrecedenceParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/OperatorPrecedenceParser.cs -------------------------------------------------------------------------------- /src/FParsecCS/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/Position.cs -------------------------------------------------------------------------------- /src/FParsecCS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FParsecCS/Reply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/Reply.cs -------------------------------------------------------------------------------- /src/FParsecCS/StringBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/StringBuffer.cs -------------------------------------------------------------------------------- /src/FParsecCS/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/Strings.cs -------------------------------------------------------------------------------- /src/FParsecCS/Text.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/Text.cs -------------------------------------------------------------------------------- /src/FParsecCS/UnmanagedMemoryPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/FParsecCS/UnmanagedMemoryPool.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpAnalyzer.Core/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpAnalyzer.Core/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/NpgsqlFSharpAnalyzer.Core/InformationSchema.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpAnalyzer.Core/InformationSchema.fs -------------------------------------------------------------------------------- /src/NpgsqlFSharpAnalyzer.Core/NpgsqlFSharpAnalyzer.Core.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpAnalyzer.Core/NpgsqlFSharpAnalyzer.Core.fsproj -------------------------------------------------------------------------------- /src/NpgsqlFSharpAnalyzer.Core/SqlAnalysis.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpAnalyzer.Core/SqlAnalysis.fs -------------------------------------------------------------------------------- /src/NpgsqlFSharpAnalyzer.Core/SqlAnalyzer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpAnalyzer.Core/SqlAnalyzer.fs -------------------------------------------------------------------------------- /src/NpgsqlFSharpAnalyzer.Core/SyntacticAnalysis.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpAnalyzer.Core/SyntacticAnalysis.fs -------------------------------------------------------------------------------- /src/NpgsqlFSharpAnalyzer.Core/Types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpAnalyzer.Core/Types.fs -------------------------------------------------------------------------------- /src/NpgsqlFSharpAnalyzer/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpAnalyzer/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/NpgsqlFSharpAnalyzer/NpgsqlFSharpAnalyzer.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpAnalyzer/NpgsqlFSharpAnalyzer.fsproj -------------------------------------------------------------------------------- /src/NpgsqlFSharpAnalyzer/SqlAnalyzer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpAnalyzer/SqlAnalyzer.fs -------------------------------------------------------------------------------- /src/NpgsqlFSharpAnalyzer/paket.references: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpAnalyzer/paket.references -------------------------------------------------------------------------------- /src/NpgsqlFSharpParser/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpParser/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/NpgsqlFSharpParser/NpgsqlFSharpParser.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpParser/NpgsqlFSharpParser.fsproj -------------------------------------------------------------------------------- /src/NpgsqlFSharpParser/Parser.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpParser/Parser.fs -------------------------------------------------------------------------------- /src/NpgsqlFSharpParser/Types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpParser/Types.fs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/ContentTypeNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/ContentTypeNames.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/FsLintVsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/FsLintVsPackage.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/LintChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/LintChecker.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/LintCheckerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/LintCheckerProvider.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/LintError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/LintError.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/LintProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/LintProjectInfo.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/LintTagger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/LintTagger.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/NpgsqlFSharpVs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/NpgsqlFSharpVs.csproj -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/Options/FsLintOptionsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/Options/FsLintOptionsPage.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/Resources/GettingStarted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/Resources/GettingStarted.html -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/Resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/Resources/License.txt -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/Resources/ReleaseNotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/Resources/ReleaseNotes.html -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/Resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/Resources/logo.png -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/SubscriptionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/SubscriptionManager.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/SuggestionPreview.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/SuggestionPreview.xaml -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/SuggestionPreview.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/SuggestionPreview.xaml.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/Suggestions/LintActionsSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/Suggestions/LintActionsSource.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/Suggestions/LintFixAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/Suggestions/LintFixAction.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/Suggestions/LintSuggestionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/Suggestions/LintSuggestionProvider.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/Suggestions/LintSuppressAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/Suggestions/LintSuppressAction.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/Suggestions/LintSuppressBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/Suggestions/LintSuppressBy.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/Table/LintTableSnapshotFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/Table/LintTableSnapshotFactory.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/Table/LintingErrorsSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/Table/LintingErrorsSnapshot.cs -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/paket.references: -------------------------------------------------------------------------------- 1 | FSharp.Core 2 | -------------------------------------------------------------------------------- /src/NpgsqlFSharpVs/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/NpgsqlFSharpVs/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/ParserTestsWithNet48/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/ParserTestsWithNet48/App.config -------------------------------------------------------------------------------- /src/ParserTestsWithNet48/ParserTestsWithNet48.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/ParserTestsWithNet48/ParserTestsWithNet48.csproj -------------------------------------------------------------------------------- /src/ParserTestsWithNet48/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/ParserTestsWithNet48/Program.cs -------------------------------------------------------------------------------- /src/ParserTestsWithNet48/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/ParserTestsWithNet48/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Ubik/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/Ubik/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/Ubik/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/Ubik/Program.fs -------------------------------------------------------------------------------- /src/Ubik/Project.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/Ubik/Project.fs -------------------------------------------------------------------------------- /src/Ubik/Ubik.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/src/Ubik/Ubik.fsproj -------------------------------------------------------------------------------- /tests/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/Directory.Build.props -------------------------------------------------------------------------------- /tests/NpgsqlFSharpAnalyzer.Tests/Analyzer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/NpgsqlFSharpAnalyzer.Tests/Analyzer.fs -------------------------------------------------------------------------------- /tests/NpgsqlFSharpAnalyzer.Tests/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/NpgsqlFSharpAnalyzer.Tests/AssemblyInfo.fs -------------------------------------------------------------------------------- /tests/NpgsqlFSharpAnalyzer.Tests/Main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/NpgsqlFSharpAnalyzer.Tests/Main.fs -------------------------------------------------------------------------------- /tests/NpgsqlFSharpAnalyzer.Tests/NpgsqlFSharpAnalyzer.Tests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/NpgsqlFSharpAnalyzer.Tests/NpgsqlFSharpAnalyzer.Tests.fsproj -------------------------------------------------------------------------------- /tests/NpgsqlFSharpAnalyzer.Tests/ParseDeclareTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/NpgsqlFSharpAnalyzer.Tests/ParseDeclareTests.fs -------------------------------------------------------------------------------- /tests/NpgsqlFSharpAnalyzer.Tests/ParseDeleteTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/NpgsqlFSharpAnalyzer.Tests/ParseDeleteTests.fs -------------------------------------------------------------------------------- /tests/NpgsqlFSharpAnalyzer.Tests/ParseInsertTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/NpgsqlFSharpAnalyzer.Tests/ParseInsertTests.fs -------------------------------------------------------------------------------- /tests/NpgsqlFSharpAnalyzer.Tests/ParseSelectTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/NpgsqlFSharpAnalyzer.Tests/ParseSelectTests.fs -------------------------------------------------------------------------------- /tests/NpgsqlFSharpAnalyzer.Tests/ParseSetTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/NpgsqlFSharpAnalyzer.Tests/ParseSetTests.fs -------------------------------------------------------------------------------- /tests/NpgsqlFSharpAnalyzer.Tests/ParseUpdateTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/NpgsqlFSharpAnalyzer.Tests/ParseUpdateTests.fs -------------------------------------------------------------------------------- /tests/NpgsqlFSharpAnalyzer.Tests/Tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/NpgsqlFSharpAnalyzer.Tests/Tests.fs -------------------------------------------------------------------------------- /tests/examples/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/Directory.Build.props -------------------------------------------------------------------------------- /tests/examples/hashing/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/AssemblyInfo.fs -------------------------------------------------------------------------------- /tests/examples/hashing/MultipleNestedModules.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/MultipleNestedModules.fs -------------------------------------------------------------------------------- /tests/examples/hashing/MultipleNestedModules.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/MultipleNestedModules.fsx -------------------------------------------------------------------------------- /tests/examples/hashing/SprintfBlock.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/SprintfBlock.fs -------------------------------------------------------------------------------- /tests/examples/hashing/castingNonNullableStaysNonNullable.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/castingNonNullableStaysNonNullable.fs -------------------------------------------------------------------------------- /tests/examples/hashing/detectingDynamicListsInTransactions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/detectingDynamicListsInTransactions.fs -------------------------------------------------------------------------------- /tests/examples/hashing/detectingEmptyParameterSet.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/detectingEmptyParameterSet.fs -------------------------------------------------------------------------------- /tests/examples/hashing/errorsInTransactions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/errorsInTransactions.fs -------------------------------------------------------------------------------- /tests/examples/hashing/examples.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/examples.fsproj -------------------------------------------------------------------------------- /tests/examples/hashing/executingQueryInsteadOfNonQuery.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/executingQueryInsteadOfNonQuery.fs -------------------------------------------------------------------------------- /tests/examples/hashing/insertQueryWithNonNullableParameter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/insertQueryWithNonNullableParameter.fs -------------------------------------------------------------------------------- /tests/examples/hashing/parameterTypeMismatch.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/parameterTypeMismatch.fs -------------------------------------------------------------------------------- /tests/examples/hashing/readAttemptIntegerTypeMismatch.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/readAttemptIntegerTypeMismatch.fs -------------------------------------------------------------------------------- /tests/examples/hashing/readingTextArray.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/readingTextArray.fs -------------------------------------------------------------------------------- /tests/examples/hashing/readingUuidArray.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/readingUuidArray.fs -------------------------------------------------------------------------------- /tests/examples/hashing/selectWithInnerJoins.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/selectWithInnerJoins.fs -------------------------------------------------------------------------------- /tests/examples/hashing/selectWithNonNullableColumnComparison.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/selectWithNonNullableColumnComparison.fs -------------------------------------------------------------------------------- /tests/examples/hashing/semanticAnalysis-missingColumn.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/semanticAnalysis-missingColumn.fs -------------------------------------------------------------------------------- /tests/examples/hashing/semanticAnalysis-missingParameter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/semanticAnalysis-missingParameter.fs -------------------------------------------------------------------------------- /tests/examples/hashing/semanticAnalysis-redundantParameters.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/semanticAnalysis-redundantParameters.fs -------------------------------------------------------------------------------- /tests/examples/hashing/semanticAnalysis-typeMismatch.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/semanticAnalysis-typeMismatch.fs -------------------------------------------------------------------------------- /tests/examples/hashing/syntacticAnalysis-literalStrings.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/syntacticAnalysis-literalStrings.fs -------------------------------------------------------------------------------- /tests/examples/hashing/syntacticAnalysis.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/syntacticAnalysis.fs -------------------------------------------------------------------------------- /tests/examples/hashing/syntacticAnalysisExecuteScalar.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/syntacticAnalysisExecuteScalar.fs -------------------------------------------------------------------------------- /tests/examples/hashing/syntacticAnalysisFromLambdaBody.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/syntacticAnalysisFromLambdaBody.fs -------------------------------------------------------------------------------- /tests/examples/hashing/syntacticAnalysisFromSingleCaseUnion.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/syntacticAnalysisFromSingleCaseUnion.fs -------------------------------------------------------------------------------- /tests/examples/hashing/syntacticAnalysisProcessedList.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/syntacticAnalysisProcessedList.fs -------------------------------------------------------------------------------- /tests/examples/hashing/syntacticAnalysisSimpleQuery.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/syntacticAnalysisSimpleQuery.fs -------------------------------------------------------------------------------- /tests/examples/hashing/syntaxAnalysis-detectingSkipAnalysis.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/syntaxAnalysis-detectingSkipAnalysis.fs -------------------------------------------------------------------------------- /tests/examples/hashing/syntaxAnalysis-usingTransactions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/syntaxAnalysis-usingTransactions.fs -------------------------------------------------------------------------------- /tests/examples/hashing/syntaxAnalysisReferencingQueryDoesNotGiveError.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/syntaxAnalysisReferencingQueryDoesNotGiveError.fs -------------------------------------------------------------------------------- /tests/examples/hashing/topLevelExpressionIsDetected.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/topLevelExpressionIsDetected.fs -------------------------------------------------------------------------------- /tests/examples/hashing/updateQueryWithParametersInAssignments.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/updateQueryWithParametersInAssignments.fs -------------------------------------------------------------------------------- /tests/examples/hashing/usingIntArrayParameter.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/usingIntArrayParameter.fs -------------------------------------------------------------------------------- /tests/examples/hashing/usingLiteralQueriesWithTransactions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/usingLiteralQueriesWithTransactions.fs -------------------------------------------------------------------------------- /tests/examples/hashing/usingProcessedParameters.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zaid-Ajaj/Npgsql.FSharp.Analyzer/HEAD/tests/examples/hashing/usingProcessedParameters.fs --------------------------------------------------------------------------------