├── .appends └── .github │ └── labels.yml ├── .config └── dotnet-tools.json ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── dependabot.yml ├── labels.yml └── workflows │ ├── deploy.yml │ ├── pause-community-contributions.yml │ ├── ping-cross-track-maintainers-team.yml │ ├── sync-labels.yml │ └── test.yml ├── .gitignore ├── .prettierignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── Excercism.Analyzers.CSharp.sln ├── LICENSE ├── README.md ├── bin ├── run-in-docker.sh ├── run-tests-in-docker.sh ├── run-tests.sh ├── run.sh └── update-golden-tests.sh ├── src └── Exercism.Analyzers.CSharp │ ├── Analysis.cs │ ├── Analyzers │ ├── CollatzConjectureAnalyzer.cs │ ├── CommonAnalyzer.cs │ ├── DifferenceOfSquaresAnalyzer.cs │ ├── GigasecondAnalyzer.cs │ ├── GrainsAnalyzer.cs │ ├── IsogramAnalyzer.cs │ ├── LeapAnalyzer.cs │ ├── PangramAnalyzer.cs │ ├── ProteinTranslationAnalyzer.cs │ ├── RaindropsAnalyzer.cs │ ├── ReverseStringAnalyzer.cs │ ├── TagAnalyzer.cs │ ├── TwoFerAnalyzer.cs │ └── WeighingMachineAnalyzer.cs │ ├── Comments.cs │ ├── Exercism.Analyzers.CSharp.csproj │ ├── Loader.cs │ ├── Output.cs │ └── Program.cs └── tests ├── bank-account └── approaches │ ├── lock-statement │ ├── .meta │ │ └── config.json │ ├── BankAccount.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── mutex │ ├── .meta │ └── config.json │ ├── BankAccount.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── bob └── approaches │ ├── answer-array │ ├── .meta │ │ └── config.json │ ├── Bob.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── if │ ├── .meta │ │ └── config.json │ ├── Bob.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── regular-expressions │ ├── .meta │ │ └── config.json │ ├── Bob.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── switch-on-tuple │ ├── .meta │ └── config.json │ ├── Bob.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── collatz-conjecture └── approaches │ ├── recursion │ ├── .meta │ │ └── config.json │ ├── CollatzConjecture.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── sequence │ ├── .meta │ │ └── config.json │ ├── CollatzConjecture.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── while-loop │ ├── .meta │ └── config.json │ ├── CollatzConjecture.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── common ├── assign-and-return │ ├── .meta │ │ └── config.json │ ├── Common.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── has-compile-errors │ ├── .meta │ │ └── config.json │ ├── Errors.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── has-main-method │ ├── .meta │ │ └── config.json │ ├── Common.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── ignore-non-solution-files │ ├── .meta │ │ ├── Example.cs │ │ └── config.json │ ├── Additional.cs │ ├── Editor.cs │ ├── Invalidator.cs │ ├── Solution.cs │ ├── Solution.csproj │ ├── Tests.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── missing-solution-file │ ├── .meta │ │ └── config.json │ ├── expected_analysis.json │ └── expected_tags.json └── writes-to-console │ ├── console-error-write-line │ ├── .meta │ │ └── config.json │ ├── Errors.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── console-error-write │ ├── .meta │ │ └── config.json │ ├── Errors.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── console-out-write-line │ ├── .meta │ │ └── config.json │ ├── Errors.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── console-out-write │ ├── .meta │ │ └── config.json │ ├── Errors.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── console-write-line │ ├── .meta │ │ └── config.json │ ├── Errors.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── console-write │ ├── .meta │ └── config.json │ ├── Errors.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── darts └── approaches │ ├── if-statements │ ├── .meta │ │ └── config.json │ ├── Darts.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── switch-expression │ ├── .meta │ └── config.json │ ├── Darts.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── difference-of-squares └── approaches │ ├── for-statement │ ├── .meta │ │ └── config.json │ ├── DifferenceOfSquares.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── linq │ ├── .meta │ │ └── config.json │ ├── DifferenceOfSquares.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── math │ ├── equations-only │ ├── .meta │ │ └── config.json │ ├── Math.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── using-math-class │ ├── .meta │ └── config.json │ ├── Math.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── diffie-hellman └── approaches │ └── big-integer │ ├── .meta │ └── config.json │ ├── DiffieHellman.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── gigasecond ├── add-seconds │ ├── digits-with-separator │ │ ├── .meta │ │ │ └── config.json │ │ ├── Gigasecond.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ ├── digits-without-separator │ │ ├── .meta │ │ │ └── config.json │ │ ├── Gigasecond.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ ├── math-pow │ │ ├── .meta │ │ │ └── config.json │ │ ├── Gigasecond.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ └── scientific-notation │ │ ├── lower-case │ │ ├── .meta │ │ │ └── config.json │ │ ├── Gigasecond.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ │ └── upper-case │ │ ├── .meta │ │ └── config.json │ │ ├── Gigasecond.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json ├── add │ ├── .meta │ │ └── config.json │ ├── Gigasecond.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── approaches │ ├── add-seconds │ │ ├── .meta │ │ │ └── config.json │ │ ├── Gigasecond.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ └── time-span │ │ ├── .meta │ │ └── config.json │ │ ├── Gigasecond.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json ├── create-date-time │ ├── .meta │ │ └── config.json │ ├── Gigasecond.cs │ ├── expected_analysis.json │ └── expected_tags.json └── plus-operator │ ├── .meta │ └── config.json │ ├── Gigasecond.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── grade-school └── approaches │ └── sorted-collections │ ├── .meta │ └── config.json │ ├── GradeSchool.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── grains └── approaches │ ├── bit-shifting │ ├── .meta │ │ └── config.json │ ├── Grains.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── max-value │ ├── .meta │ │ └── config.json │ ├── Grains.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── pow │ ├── .meta │ └── config.json │ ├── Grains.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── hamming └── approaches │ ├── for-loop │ ├── .meta │ │ └── config.json │ ├── Hamming.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── linq │ ├── .meta │ └── config.json │ ├── Hamming.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── isogram └── approaches │ ├── bitfield │ ├── .meta │ │ └── config.json │ ├── Isogram.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── distinct │ ├── .meta │ │ └── config.json │ ├── Isogram.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── groupby │ ├── .meta │ └── config.json │ ├── Isogram.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── leap ├── approaches │ ├── boolean-chain │ │ ├── .meta │ │ │ └── config.json │ │ ├── Leap.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ ├── built-in-method │ │ ├── .meta │ │ │ └── config.json │ │ ├── Leap.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ ├── datetime-addition │ │ ├── .meta │ │ │ └── config.json │ │ ├── Leap.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ ├── switch-on-a-tuple │ │ ├── .meta │ │ │ └── config.json │ │ ├── Leap.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ └── ternary-operator │ │ ├── .meta │ │ └── config.json │ │ ├── Leap.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json ├── if-statements │ ├── .meta │ │ └── config.json │ ├── Leap.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── nested-if-statement │ ├── .meta │ │ └── config.json │ ├── Leap.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── too-many-checks │ ├── .meta │ │ └── config.json │ ├── Leap.cs │ ├── expected_analysis.json │ └── expected_tags.json └── use-is-leap-year │ ├── block-body │ ├── .meta │ │ └── config.json │ ├── Leap.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── expression-body │ ├── .meta │ └── config.json │ ├── Leap.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── missing └── no-analyzer-implemented │ ├── .meta │ └── config.json │ ├── Missing.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── palindrome-products └── approaches │ └── factors-first │ ├── .meta │ └── config.json │ ├── PalindromeProducts.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── pangram └── approaches │ ├── all-contains-case-insensitive │ ├── .meta │ │ └── config.json │ ├── Pangram.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── all-contains-tolower │ ├── .meta │ │ └── config.json │ ├── Pangram.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── bitfield │ ├── .meta │ └── config.json │ ├── Pangram.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── parallel-letter-frequency └── approaches │ └── as-parallel │ ├── .meta │ └── config.json │ ├── ParallelLetterFrequency.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── perfect-numbers └── approaches │ ├── if-statements │ ├── .meta │ │ └── config.json │ ├── PerfectNumbers.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── switch-expression │ ├── .meta │ └── config.json │ ├── PerfectNumbers.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── phone-number └── approaches │ └── regular-expression │ ├── .meta │ └── config.json │ ├── PhoneNumber.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── pig-latin └── approaches │ └── regular-expressions │ ├── .meta │ └── config.json │ ├── PigLatin.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── poker └── approaches │ ├── icomparer │ ├── .meta │ │ └── config.json │ ├── Poker.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── integer-score │ ├── .meta │ └── config.json │ ├── Poker.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── protein-translation └── approaches │ ├── linq-dict │ ├── .meta │ │ └── config.json │ ├── ProteinTranslation.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── substring-dict │ ├── .meta │ │ └── config.json │ ├── ProteinTranslation.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── substring-switch │ ├── .meta │ │ └── config.json │ ├── ProteinTranslation.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── yield-dict │ ├── .meta │ │ └── config.json │ ├── ProteinTranslation.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── yield-switch │ ├── .meta │ └── config.json │ ├── ProteinTranslation.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── proverb └── approaches │ ├── for-loop │ ├── .meta │ │ └── config.json │ ├── Proverb.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── linq │ ├── .meta │ └── config.json │ ├── Proverb.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── raindrops └── approaches │ ├── aggregate │ ├── .meta │ │ └── config.json │ ├── Raindrops.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── if-statements │ ├── .meta │ └── config.json │ ├── Raindrops.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── reverse-string └── approaches │ ├── array-reverse │ ├── .meta │ │ └── config.json │ ├── ReverseString.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── linq │ ├── .meta │ │ └── config.json │ ├── ReverseString.cs │ ├── expected_analysis.json │ └── expected_tags.json │ ├── span │ ├── .meta │ │ └── config.json │ ├── ReverseString.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── string-builder │ ├── .meta │ └── config.json │ ├── ReverseString.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── rna-transcription └── approaches │ ├── dictionary │ ├── .meta │ │ └── config.json │ ├── RnaTranscription.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── switch-expression │ ├── .meta │ └── config.json │ ├── RnaTranscription.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── series └── approaches │ ├── for-loop │ ├── .meta │ │ └── config.json │ ├── Series.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── linq │ ├── .meta │ └── config.json │ ├── Series.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── sieve └── approaches │ ├── bit-array │ ├── .meta │ │ └── config.json │ ├── Sieve.cs │ ├── expected_analysis.json │ └── expected_tags.json │ └── hash-set │ ├── .meta │ └── config.json │ ├── Sieve.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── tags ├── constructs │ ├── comments │ │ ├── .meta │ │ │ └── config.json │ │ ├── Comments.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ ├── compound-assignment │ │ ├── .meta │ │ │ └── config.json │ │ ├── CompoundAssignment.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ ├── events │ │ ├── .meta │ │ │ └── config.json │ │ ├── Event.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ ├── exceptions │ │ ├── .meta │ │ │ └── config.json │ │ ├── Exceptions.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ ├── flow-control │ │ ├── .meta │ │ │ └── config.json │ │ ├── FlowControl.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ ├── functional │ │ ├── .meta │ │ │ └── config.json │ │ ├── Functional.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ ├── methods │ │ ├── .meta │ │ │ └── config.json │ │ ├── Methods.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ ├── resources │ │ ├── .meta │ │ │ └── config.json │ │ ├── Resources.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ └── types │ │ ├── .meta │ │ └── config.json │ │ ├── Types.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json ├── paradigms │ └── reflective │ │ ├── .meta │ │ └── config.json │ │ ├── Reflective.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json ├── techniques │ └── recursion │ │ ├── .meta │ │ └── config.json │ │ ├── Recursion.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json └── uses │ └── types │ ├── basic │ ├── framework-types │ │ ├── .meta │ │ │ └── config.json │ │ ├── Types.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ ├── language-types │ │ ├── .meta │ │ │ └── config.json │ │ ├── Types.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ └── literals │ │ ├── .meta │ │ └── config.json │ │ ├── Types.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ └── collections │ └── framework-types │ ├── .meta │ └── config.json │ ├── Types.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── two-bucket └── approaches │ └── graph-shortest-path │ ├── .meta │ └── config.json │ ├── TwoBucket.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── two-fer ├── approaches │ ├── method-overloading │ │ ├── .meta │ │ │ └── config.json │ │ ├── TwoFer.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ └── optional-parameter │ │ ├── .meta │ │ └── config.json │ │ ├── TwoFer.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json ├── concatenation │ ├── .meta │ │ └── config.json │ ├── TwoFer.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── if │ ├── .meta │ │ └── config.json │ ├── TwoFer.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── interpolation │ ├── .meta │ │ └── config.json │ ├── TwoFer.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── invalid-default-value │ ├── .meta │ │ └── config.json │ ├── TwoFer.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── is-null-or-empty │ ├── .meta │ │ └── config.json │ ├── TwoFer.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── is-null-or-white-space │ ├── .meta │ │ └── config.json │ ├── TwoFer.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── null-coalescing │ ├── .meta │ │ └── config.json │ ├── TwoFer.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── string.concat │ ├── .meta │ │ └── config.json │ ├── TwoFer.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── string.format │ ├── .meta │ │ └── config.json │ ├── TwoFer.cs │ ├── expected_analysis.json │ └── expected_tags.json └── string.join │ ├── .meta │ └── config.json │ ├── TwoFer.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── weighing-machine ├── backing-field-should-be-private │ ├── .meta │ │ └── config.json │ ├── WeighingMachine.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── exemplar │ ├── .meta │ │ └── config.json │ ├── WeighingMachine.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── is-not-auto-property │ ├── property-precision │ │ ├── .meta │ │ │ └── config.json │ │ ├── WeighingMachine.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json │ └── property-tare-adjustment │ │ ├── .meta │ │ └── config.json │ │ ├── WeighingMachine.cs │ │ ├── expected_analysis.json │ │ └── expected_tags.json ├── precision-is-not-getter-only │ ├── .meta │ │ └── config.json │ ├── WeighingMachine.cs │ ├── expected_analysis.json │ └── expected_tags.json ├── round-method-called │ ├── .meta │ │ └── config.json │ ├── WeighingMachine.cs │ ├── expected_analysis.json │ └── expected_tags.json └── use-initializer │ ├── .meta │ └── config.json │ ├── WeighingMachine.cs │ ├── expected_analysis.json │ └── expected_tags.json └── yacht └── approaches └── linq ├── .meta └── config.json ├── Yacht.cs ├── expected_analysis.json └── expected_tags.json /.appends/.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.appends/.github/labels.yml -------------------------------------------------------------------------------- /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/pause-community-contributions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.github/workflows/pause-community-contributions.yml -------------------------------------------------------------------------------- /.github/workflows/ping-cross-track-maintainers-team.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.github/workflows/ping-cross-track-maintainers-team.yml -------------------------------------------------------------------------------- /.github/workflows/sync-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.github/workflows/sync-labels.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/.prettierignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/Dockerfile -------------------------------------------------------------------------------- /Excercism.Analyzers.CSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/Excercism.Analyzers.CSharp.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /bin/run-in-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/bin/run-in-docker.sh -------------------------------------------------------------------------------- /bin/run-tests-in-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/bin/run-tests-in-docker.sh -------------------------------------------------------------------------------- /bin/run-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/bin/run-tests.sh -------------------------------------------------------------------------------- /bin/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/bin/run.sh -------------------------------------------------------------------------------- /bin/update-golden-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/bin/update-golden-tests.sh -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analysis.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/CollatzConjectureAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/CollatzConjectureAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/CommonAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/CommonAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/DifferenceOfSquaresAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/DifferenceOfSquaresAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/GigasecondAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/GigasecondAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/GrainsAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/GrainsAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/IsogramAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/IsogramAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/LeapAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/LeapAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/PangramAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/PangramAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/ProteinTranslationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/ProteinTranslationAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/RaindropsAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/RaindropsAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/ReverseStringAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/ReverseStringAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/TagAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/TagAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/TwoFerAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/TwoFerAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Analyzers/WeighingMachineAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Analyzers/WeighingMachineAnalyzer.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Comments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Comments.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Exercism.Analyzers.CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Exercism.Analyzers.CSharp.csproj -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Loader.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Output.cs -------------------------------------------------------------------------------- /src/Exercism.Analyzers.CSharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/src/Exercism.Analyzers.CSharp/Program.cs -------------------------------------------------------------------------------- /tests/bank-account/approaches/lock-statement/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bank-account/approaches/lock-statement/.meta/config.json -------------------------------------------------------------------------------- /tests/bank-account/approaches/lock-statement/BankAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bank-account/approaches/lock-statement/BankAccount.cs -------------------------------------------------------------------------------- /tests/bank-account/approaches/lock-statement/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/bank-account/approaches/lock-statement/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bank-account/approaches/lock-statement/expected_tags.json -------------------------------------------------------------------------------- /tests/bank-account/approaches/mutex/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bank-account/approaches/mutex/.meta/config.json -------------------------------------------------------------------------------- /tests/bank-account/approaches/mutex/BankAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bank-account/approaches/mutex/BankAccount.cs -------------------------------------------------------------------------------- /tests/bank-account/approaches/mutex/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/bank-account/approaches/mutex/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bank-account/approaches/mutex/expected_tags.json -------------------------------------------------------------------------------- /tests/bob/approaches/answer-array/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/answer-array/.meta/config.json -------------------------------------------------------------------------------- /tests/bob/approaches/answer-array/Bob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/answer-array/Bob.cs -------------------------------------------------------------------------------- /tests/bob/approaches/answer-array/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/bob/approaches/answer-array/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/answer-array/expected_tags.json -------------------------------------------------------------------------------- /tests/bob/approaches/if/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/if/.meta/config.json -------------------------------------------------------------------------------- /tests/bob/approaches/if/Bob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/if/Bob.cs -------------------------------------------------------------------------------- /tests/bob/approaches/if/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/if/expected_analysis.json -------------------------------------------------------------------------------- /tests/bob/approaches/if/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/if/expected_tags.json -------------------------------------------------------------------------------- /tests/bob/approaches/regular-expressions/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/regular-expressions/.meta/config.json -------------------------------------------------------------------------------- /tests/bob/approaches/regular-expressions/Bob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/regular-expressions/Bob.cs -------------------------------------------------------------------------------- /tests/bob/approaches/regular-expressions/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/regular-expressions/expected_analysis.json -------------------------------------------------------------------------------- /tests/bob/approaches/regular-expressions/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/regular-expressions/expected_tags.json -------------------------------------------------------------------------------- /tests/bob/approaches/switch-on-tuple/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/switch-on-tuple/.meta/config.json -------------------------------------------------------------------------------- /tests/bob/approaches/switch-on-tuple/Bob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/switch-on-tuple/Bob.cs -------------------------------------------------------------------------------- /tests/bob/approaches/switch-on-tuple/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/bob/approaches/switch-on-tuple/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/bob/approaches/switch-on-tuple/expected_tags.json -------------------------------------------------------------------------------- /tests/collatz-conjecture/approaches/recursion/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/collatz-conjecture/approaches/recursion/.meta/config.json -------------------------------------------------------------------------------- /tests/collatz-conjecture/approaches/recursion/CollatzConjecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/collatz-conjecture/approaches/recursion/CollatzConjecture.cs -------------------------------------------------------------------------------- /tests/collatz-conjecture/approaches/recursion/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/collatz-conjecture/approaches/recursion/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/collatz-conjecture/approaches/recursion/expected_tags.json -------------------------------------------------------------------------------- /tests/collatz-conjecture/approaches/sequence/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/collatz-conjecture/approaches/sequence/.meta/config.json -------------------------------------------------------------------------------- /tests/collatz-conjecture/approaches/sequence/CollatzConjecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/collatz-conjecture/approaches/sequence/CollatzConjecture.cs -------------------------------------------------------------------------------- /tests/collatz-conjecture/approaches/sequence/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/collatz-conjecture/approaches/sequence/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/collatz-conjecture/approaches/sequence/expected_tags.json -------------------------------------------------------------------------------- /tests/collatz-conjecture/approaches/while-loop/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/collatz-conjecture/approaches/while-loop/.meta/config.json -------------------------------------------------------------------------------- /tests/collatz-conjecture/approaches/while-loop/CollatzConjecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/collatz-conjecture/approaches/while-loop/CollatzConjecture.cs -------------------------------------------------------------------------------- /tests/collatz-conjecture/approaches/while-loop/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/collatz-conjecture/approaches/while-loop/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/collatz-conjecture/approaches/while-loop/expected_tags.json -------------------------------------------------------------------------------- /tests/common/assign-and-return/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/assign-and-return/.meta/config.json -------------------------------------------------------------------------------- /tests/common/assign-and-return/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/assign-and-return/Common.cs -------------------------------------------------------------------------------- /tests/common/assign-and-return/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/assign-and-return/expected_analysis.json -------------------------------------------------------------------------------- /tests/common/assign-and-return/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/assign-and-return/expected_tags.json -------------------------------------------------------------------------------- /tests/common/has-compile-errors/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/has-compile-errors/.meta/config.json -------------------------------------------------------------------------------- /tests/common/has-compile-errors/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/has-compile-errors/Errors.cs -------------------------------------------------------------------------------- /tests/common/has-compile-errors/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/common/has-compile-errors/expected_tags.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/common/has-main-method/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/has-main-method/.meta/config.json -------------------------------------------------------------------------------- /tests/common/has-main-method/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/has-main-method/Common.cs -------------------------------------------------------------------------------- /tests/common/has-main-method/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/has-main-method/expected_analysis.json -------------------------------------------------------------------------------- /tests/common/has-main-method/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/has-main-method/expected_tags.json -------------------------------------------------------------------------------- /tests/common/ignore-non-solution-files/.meta/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/ignore-non-solution-files/.meta/Example.cs -------------------------------------------------------------------------------- /tests/common/ignore-non-solution-files/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/ignore-non-solution-files/.meta/config.json -------------------------------------------------------------------------------- /tests/common/ignore-non-solution-files/Additional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/ignore-non-solution-files/Additional.cs -------------------------------------------------------------------------------- /tests/common/ignore-non-solution-files/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/ignore-non-solution-files/Editor.cs -------------------------------------------------------------------------------- /tests/common/ignore-non-solution-files/Invalidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/ignore-non-solution-files/Invalidator.cs -------------------------------------------------------------------------------- /tests/common/ignore-non-solution-files/Solution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/ignore-non-solution-files/Solution.cs -------------------------------------------------------------------------------- /tests/common/ignore-non-solution-files/Solution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/ignore-non-solution-files/Solution.csproj -------------------------------------------------------------------------------- /tests/common/ignore-non-solution-files/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/ignore-non-solution-files/Tests.cs -------------------------------------------------------------------------------- /tests/common/ignore-non-solution-files/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/common/ignore-non-solution-files/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/ignore-non-solution-files/expected_tags.json -------------------------------------------------------------------------------- /tests/common/missing-solution-file/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/missing-solution-file/.meta/config.json -------------------------------------------------------------------------------- /tests/common/missing-solution-file/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/common/missing-solution-file/expected_tags.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-error-write-line/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-error-write-line/.meta/config.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-error-write-line/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-error-write-line/Errors.cs -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-error-write-line/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-error-write-line/expected_analysis.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-error-write-line/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-error-write-line/expected_tags.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-error-write/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-error-write/.meta/config.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-error-write/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-error-write/Errors.cs -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-error-write/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-error-write/expected_analysis.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-error-write/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-error-write/expected_tags.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-out-write-line/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-out-write-line/.meta/config.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-out-write-line/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-out-write-line/Errors.cs -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-out-write-line/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-out-write-line/expected_analysis.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-out-write-line/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-out-write-line/expected_tags.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-out-write/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-out-write/.meta/config.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-out-write/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-out-write/Errors.cs -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-out-write/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-out-write/expected_analysis.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-out-write/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-out-write/expected_tags.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-write-line/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-write-line/.meta/config.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-write-line/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-write-line/Errors.cs -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-write-line/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-write-line/expected_analysis.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-write-line/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-write-line/expected_tags.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-write/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-write/.meta/config.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-write/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-write/Errors.cs -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-write/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-write/expected_analysis.json -------------------------------------------------------------------------------- /tests/common/writes-to-console/console-write/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/common/writes-to-console/console-write/expected_tags.json -------------------------------------------------------------------------------- /tests/darts/approaches/if-statements/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/darts/approaches/if-statements/.meta/config.json -------------------------------------------------------------------------------- /tests/darts/approaches/if-statements/Darts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/darts/approaches/if-statements/Darts.cs -------------------------------------------------------------------------------- /tests/darts/approaches/if-statements/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/darts/approaches/if-statements/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/darts/approaches/if-statements/expected_tags.json -------------------------------------------------------------------------------- /tests/darts/approaches/switch-expression/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/darts/approaches/switch-expression/.meta/config.json -------------------------------------------------------------------------------- /tests/darts/approaches/switch-expression/Darts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/darts/approaches/switch-expression/Darts.cs -------------------------------------------------------------------------------- /tests/darts/approaches/switch-expression/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/darts/approaches/switch-expression/expected_analysis.json -------------------------------------------------------------------------------- /tests/darts/approaches/switch-expression/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/darts/approaches/switch-expression/expected_tags.json -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/for-statement/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/difference-of-squares/approaches/for-statement/.meta/config.json -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/for-statement/DifferenceOfSquares.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/difference-of-squares/approaches/for-statement/DifferenceOfSquares.cs -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/for-statement/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/for-statement/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/difference-of-squares/approaches/for-statement/expected_tags.json -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/linq/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/difference-of-squares/approaches/linq/.meta/config.json -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/linq/DifferenceOfSquares.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/difference-of-squares/approaches/linq/DifferenceOfSquares.cs -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/linq/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/linq/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/difference-of-squares/approaches/linq/expected_tags.json -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/math/equations-only/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/difference-of-squares/approaches/math/equations-only/.meta/config.json -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/math/equations-only/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/difference-of-squares/approaches/math/equations-only/Math.cs -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/math/equations-only/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/math/equations-only/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/difference-of-squares/approaches/math/equations-only/expected_tags.json -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/math/using-math-class/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/difference-of-squares/approaches/math/using-math-class/.meta/config.json -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/math/using-math-class/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/difference-of-squares/approaches/math/using-math-class/Math.cs -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/math/using-math-class/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/difference-of-squares/approaches/math/using-math-class/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/difference-of-squares/approaches/math/using-math-class/expected_tags.json -------------------------------------------------------------------------------- /tests/diffie-hellman/approaches/big-integer/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/diffie-hellman/approaches/big-integer/.meta/config.json -------------------------------------------------------------------------------- /tests/diffie-hellman/approaches/big-integer/DiffieHellman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/diffie-hellman/approaches/big-integer/DiffieHellman.cs -------------------------------------------------------------------------------- /tests/diffie-hellman/approaches/big-integer/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/diffie-hellman/approaches/big-integer/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/diffie-hellman/approaches/big-integer/expected_tags.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/digits-with-separator/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/digits-with-separator/.meta/config.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/digits-with-separator/Gigasecond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/digits-with-separator/Gigasecond.cs -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/digits-with-separator/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/digits-with-separator/expected_analysis.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/digits-with-separator/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/digits-with-separator/expected_tags.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/digits-without-separator/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/digits-without-separator/.meta/config.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/digits-without-separator/Gigasecond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/digits-without-separator/Gigasecond.cs -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/digits-without-separator/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/digits-without-separator/expected_analysis.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/digits-without-separator/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/digits-without-separator/expected_tags.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/math-pow/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/math-pow/.meta/config.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/math-pow/Gigasecond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/math-pow/Gigasecond.cs -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/math-pow/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/math-pow/expected_analysis.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/math-pow/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/math-pow/expected_tags.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/scientific-notation/lower-case/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/scientific-notation/lower-case/.meta/config.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/scientific-notation/lower-case/Gigasecond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/scientific-notation/lower-case/Gigasecond.cs -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/scientific-notation/lower-case/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/scientific-notation/lower-case/expected_analysis.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/scientific-notation/lower-case/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/scientific-notation/lower-case/expected_tags.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/scientific-notation/upper-case/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/scientific-notation/upper-case/.meta/config.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/scientific-notation/upper-case/Gigasecond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/scientific-notation/upper-case/Gigasecond.cs -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/scientific-notation/upper-case/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/scientific-notation/upper-case/expected_analysis.json -------------------------------------------------------------------------------- /tests/gigasecond/add-seconds/scientific-notation/upper-case/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add-seconds/scientific-notation/upper-case/expected_tags.json -------------------------------------------------------------------------------- /tests/gigasecond/add/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add/.meta/config.json -------------------------------------------------------------------------------- /tests/gigasecond/add/Gigasecond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add/Gigasecond.cs -------------------------------------------------------------------------------- /tests/gigasecond/add/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add/expected_analysis.json -------------------------------------------------------------------------------- /tests/gigasecond/add/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/add/expected_tags.json -------------------------------------------------------------------------------- /tests/gigasecond/approaches/add-seconds/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/approaches/add-seconds/.meta/config.json -------------------------------------------------------------------------------- /tests/gigasecond/approaches/add-seconds/Gigasecond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/approaches/add-seconds/Gigasecond.cs -------------------------------------------------------------------------------- /tests/gigasecond/approaches/add-seconds/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/approaches/add-seconds/expected_analysis.json -------------------------------------------------------------------------------- /tests/gigasecond/approaches/add-seconds/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/approaches/add-seconds/expected_tags.json -------------------------------------------------------------------------------- /tests/gigasecond/approaches/time-span/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/approaches/time-span/.meta/config.json -------------------------------------------------------------------------------- /tests/gigasecond/approaches/time-span/Gigasecond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/approaches/time-span/Gigasecond.cs -------------------------------------------------------------------------------- /tests/gigasecond/approaches/time-span/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/approaches/time-span/expected_analysis.json -------------------------------------------------------------------------------- /tests/gigasecond/approaches/time-span/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/approaches/time-span/expected_tags.json -------------------------------------------------------------------------------- /tests/gigasecond/create-date-time/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/create-date-time/.meta/config.json -------------------------------------------------------------------------------- /tests/gigasecond/create-date-time/Gigasecond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/create-date-time/Gigasecond.cs -------------------------------------------------------------------------------- /tests/gigasecond/create-date-time/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/create-date-time/expected_analysis.json -------------------------------------------------------------------------------- /tests/gigasecond/create-date-time/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/create-date-time/expected_tags.json -------------------------------------------------------------------------------- /tests/gigasecond/plus-operator/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/plus-operator/.meta/config.json -------------------------------------------------------------------------------- /tests/gigasecond/plus-operator/Gigasecond.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/plus-operator/Gigasecond.cs -------------------------------------------------------------------------------- /tests/gigasecond/plus-operator/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/plus-operator/expected_analysis.json -------------------------------------------------------------------------------- /tests/gigasecond/plus-operator/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/gigasecond/plus-operator/expected_tags.json -------------------------------------------------------------------------------- /tests/grade-school/approaches/sorted-collections/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grade-school/approaches/sorted-collections/.meta/config.json -------------------------------------------------------------------------------- /tests/grade-school/approaches/sorted-collections/GradeSchool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grade-school/approaches/sorted-collections/GradeSchool.cs -------------------------------------------------------------------------------- /tests/grade-school/approaches/sorted-collections/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/grade-school/approaches/sorted-collections/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grade-school/approaches/sorted-collections/expected_tags.json -------------------------------------------------------------------------------- /tests/grains/approaches/bit-shifting/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grains/approaches/bit-shifting/.meta/config.json -------------------------------------------------------------------------------- /tests/grains/approaches/bit-shifting/Grains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grains/approaches/bit-shifting/Grains.cs -------------------------------------------------------------------------------- /tests/grains/approaches/bit-shifting/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grains/approaches/bit-shifting/expected_analysis.json -------------------------------------------------------------------------------- /tests/grains/approaches/bit-shifting/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grains/approaches/bit-shifting/expected_tags.json -------------------------------------------------------------------------------- /tests/grains/approaches/max-value/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grains/approaches/max-value/.meta/config.json -------------------------------------------------------------------------------- /tests/grains/approaches/max-value/Grains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grains/approaches/max-value/Grains.cs -------------------------------------------------------------------------------- /tests/grains/approaches/max-value/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grains/approaches/max-value/expected_analysis.json -------------------------------------------------------------------------------- /tests/grains/approaches/max-value/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grains/approaches/max-value/expected_tags.json -------------------------------------------------------------------------------- /tests/grains/approaches/pow/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grains/approaches/pow/.meta/config.json -------------------------------------------------------------------------------- /tests/grains/approaches/pow/Grains.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grains/approaches/pow/Grains.cs -------------------------------------------------------------------------------- /tests/grains/approaches/pow/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grains/approaches/pow/expected_analysis.json -------------------------------------------------------------------------------- /tests/grains/approaches/pow/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/grains/approaches/pow/expected_tags.json -------------------------------------------------------------------------------- /tests/hamming/approaches/for-loop/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/hamming/approaches/for-loop/.meta/config.json -------------------------------------------------------------------------------- /tests/hamming/approaches/for-loop/Hamming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/hamming/approaches/for-loop/Hamming.cs -------------------------------------------------------------------------------- /tests/hamming/approaches/for-loop/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/hamming/approaches/for-loop/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/hamming/approaches/for-loop/expected_tags.json -------------------------------------------------------------------------------- /tests/hamming/approaches/linq/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/hamming/approaches/linq/.meta/config.json -------------------------------------------------------------------------------- /tests/hamming/approaches/linq/Hamming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/hamming/approaches/linq/Hamming.cs -------------------------------------------------------------------------------- /tests/hamming/approaches/linq/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/hamming/approaches/linq/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/hamming/approaches/linq/expected_tags.json -------------------------------------------------------------------------------- /tests/isogram/approaches/bitfield/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/isogram/approaches/bitfield/.meta/config.json -------------------------------------------------------------------------------- /tests/isogram/approaches/bitfield/Isogram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/isogram/approaches/bitfield/Isogram.cs -------------------------------------------------------------------------------- /tests/isogram/approaches/bitfield/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/isogram/approaches/bitfield/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/isogram/approaches/bitfield/expected_tags.json -------------------------------------------------------------------------------- /tests/isogram/approaches/distinct/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/isogram/approaches/distinct/.meta/config.json -------------------------------------------------------------------------------- /tests/isogram/approaches/distinct/Isogram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/isogram/approaches/distinct/Isogram.cs -------------------------------------------------------------------------------- /tests/isogram/approaches/distinct/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/isogram/approaches/distinct/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/isogram/approaches/distinct/expected_tags.json -------------------------------------------------------------------------------- /tests/isogram/approaches/groupby/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/isogram/approaches/groupby/.meta/config.json -------------------------------------------------------------------------------- /tests/isogram/approaches/groupby/Isogram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/isogram/approaches/groupby/Isogram.cs -------------------------------------------------------------------------------- /tests/isogram/approaches/groupby/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/isogram/approaches/groupby/expected_analysis.json -------------------------------------------------------------------------------- /tests/isogram/approaches/groupby/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/isogram/approaches/groupby/expected_tags.json -------------------------------------------------------------------------------- /tests/leap/approaches/boolean-chain/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/boolean-chain/.meta/config.json -------------------------------------------------------------------------------- /tests/leap/approaches/boolean-chain/Leap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/boolean-chain/Leap.cs -------------------------------------------------------------------------------- /tests/leap/approaches/boolean-chain/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/boolean-chain/expected_analysis.json -------------------------------------------------------------------------------- /tests/leap/approaches/boolean-chain/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/boolean-chain/expected_tags.json -------------------------------------------------------------------------------- /tests/leap/approaches/built-in-method/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/built-in-method/.meta/config.json -------------------------------------------------------------------------------- /tests/leap/approaches/built-in-method/Leap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/built-in-method/Leap.cs -------------------------------------------------------------------------------- /tests/leap/approaches/built-in-method/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/built-in-method/expected_analysis.json -------------------------------------------------------------------------------- /tests/leap/approaches/built-in-method/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/built-in-method/expected_tags.json -------------------------------------------------------------------------------- /tests/leap/approaches/datetime-addition/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/datetime-addition/.meta/config.json -------------------------------------------------------------------------------- /tests/leap/approaches/datetime-addition/Leap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/datetime-addition/Leap.cs -------------------------------------------------------------------------------- /tests/leap/approaches/datetime-addition/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/leap/approaches/datetime-addition/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/datetime-addition/expected_tags.json -------------------------------------------------------------------------------- /tests/leap/approaches/switch-on-a-tuple/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/switch-on-a-tuple/.meta/config.json -------------------------------------------------------------------------------- /tests/leap/approaches/switch-on-a-tuple/Leap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/switch-on-a-tuple/Leap.cs -------------------------------------------------------------------------------- /tests/leap/approaches/switch-on-a-tuple/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/switch-on-a-tuple/expected_analysis.json -------------------------------------------------------------------------------- /tests/leap/approaches/switch-on-a-tuple/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/switch-on-a-tuple/expected_tags.json -------------------------------------------------------------------------------- /tests/leap/approaches/ternary-operator/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/ternary-operator/.meta/config.json -------------------------------------------------------------------------------- /tests/leap/approaches/ternary-operator/Leap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/ternary-operator/Leap.cs -------------------------------------------------------------------------------- /tests/leap/approaches/ternary-operator/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/ternary-operator/expected_analysis.json -------------------------------------------------------------------------------- /tests/leap/approaches/ternary-operator/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/approaches/ternary-operator/expected_tags.json -------------------------------------------------------------------------------- /tests/leap/if-statements/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/if-statements/.meta/config.json -------------------------------------------------------------------------------- /tests/leap/if-statements/Leap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/if-statements/Leap.cs -------------------------------------------------------------------------------- /tests/leap/if-statements/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/if-statements/expected_analysis.json -------------------------------------------------------------------------------- /tests/leap/if-statements/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/if-statements/expected_tags.json -------------------------------------------------------------------------------- /tests/leap/nested-if-statement/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/nested-if-statement/.meta/config.json -------------------------------------------------------------------------------- /tests/leap/nested-if-statement/Leap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/nested-if-statement/Leap.cs -------------------------------------------------------------------------------- /tests/leap/nested-if-statement/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/nested-if-statement/expected_analysis.json -------------------------------------------------------------------------------- /tests/leap/nested-if-statement/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/nested-if-statement/expected_tags.json -------------------------------------------------------------------------------- /tests/leap/too-many-checks/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/too-many-checks/.meta/config.json -------------------------------------------------------------------------------- /tests/leap/too-many-checks/Leap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/too-many-checks/Leap.cs -------------------------------------------------------------------------------- /tests/leap/too-many-checks/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/too-many-checks/expected_analysis.json -------------------------------------------------------------------------------- /tests/leap/too-many-checks/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/too-many-checks/expected_tags.json -------------------------------------------------------------------------------- /tests/leap/use-is-leap-year/block-body/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/use-is-leap-year/block-body/.meta/config.json -------------------------------------------------------------------------------- /tests/leap/use-is-leap-year/block-body/Leap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/use-is-leap-year/block-body/Leap.cs -------------------------------------------------------------------------------- /tests/leap/use-is-leap-year/block-body/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/use-is-leap-year/block-body/expected_analysis.json -------------------------------------------------------------------------------- /tests/leap/use-is-leap-year/block-body/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/use-is-leap-year/block-body/expected_tags.json -------------------------------------------------------------------------------- /tests/leap/use-is-leap-year/expression-body/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/use-is-leap-year/expression-body/.meta/config.json -------------------------------------------------------------------------------- /tests/leap/use-is-leap-year/expression-body/Leap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/use-is-leap-year/expression-body/Leap.cs -------------------------------------------------------------------------------- /tests/leap/use-is-leap-year/expression-body/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/use-is-leap-year/expression-body/expected_analysis.json -------------------------------------------------------------------------------- /tests/leap/use-is-leap-year/expression-body/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/leap/use-is-leap-year/expression-body/expected_tags.json -------------------------------------------------------------------------------- /tests/missing/no-analyzer-implemented/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/missing/no-analyzer-implemented/.meta/config.json -------------------------------------------------------------------------------- /tests/missing/no-analyzer-implemented/Missing.cs: -------------------------------------------------------------------------------- 1 | public static class Missing 2 | { 3 | 4 | } -------------------------------------------------------------------------------- /tests/missing/no-analyzer-implemented/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/missing/no-analyzer-implemented/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/missing/no-analyzer-implemented/expected_tags.json -------------------------------------------------------------------------------- /tests/palindrome-products/approaches/factors-first/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/palindrome-products/approaches/factors-first/.meta/config.json -------------------------------------------------------------------------------- /tests/palindrome-products/approaches/factors-first/PalindromeProducts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/palindrome-products/approaches/factors-first/PalindromeProducts.cs -------------------------------------------------------------------------------- /tests/palindrome-products/approaches/factors-first/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/palindrome-products/approaches/factors-first/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/palindrome-products/approaches/factors-first/expected_tags.json -------------------------------------------------------------------------------- /tests/pangram/approaches/all-contains-case-insensitive/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/pangram/approaches/all-contains-case-insensitive/.meta/config.json -------------------------------------------------------------------------------- /tests/pangram/approaches/all-contains-case-insensitive/Pangram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/pangram/approaches/all-contains-case-insensitive/Pangram.cs -------------------------------------------------------------------------------- /tests/pangram/approaches/all-contains-case-insensitive/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/pangram/approaches/all-contains-case-insensitive/expected_analysis.json -------------------------------------------------------------------------------- /tests/pangram/approaches/all-contains-case-insensitive/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/pangram/approaches/all-contains-case-insensitive/expected_tags.json -------------------------------------------------------------------------------- /tests/pangram/approaches/all-contains-tolower/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/pangram/approaches/all-contains-tolower/.meta/config.json -------------------------------------------------------------------------------- /tests/pangram/approaches/all-contains-tolower/Pangram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/pangram/approaches/all-contains-tolower/Pangram.cs -------------------------------------------------------------------------------- /tests/pangram/approaches/all-contains-tolower/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/pangram/approaches/all-contains-tolower/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/pangram/approaches/all-contains-tolower/expected_tags.json -------------------------------------------------------------------------------- /tests/pangram/approaches/bitfield/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/pangram/approaches/bitfield/.meta/config.json -------------------------------------------------------------------------------- /tests/pangram/approaches/bitfield/Pangram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/pangram/approaches/bitfield/Pangram.cs -------------------------------------------------------------------------------- /tests/pangram/approaches/bitfield/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/pangram/approaches/bitfield/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/pangram/approaches/bitfield/expected_tags.json -------------------------------------------------------------------------------- /tests/parallel-letter-frequency/approaches/as-parallel/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/parallel-letter-frequency/approaches/as-parallel/.meta/config.json -------------------------------------------------------------------------------- /tests/parallel-letter-frequency/approaches/as-parallel/ParallelLetterFrequency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/parallel-letter-frequency/approaches/as-parallel/ParallelLetterFrequency.cs -------------------------------------------------------------------------------- /tests/parallel-letter-frequency/approaches/as-parallel/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/parallel-letter-frequency/approaches/as-parallel/expected_analysis.json -------------------------------------------------------------------------------- /tests/parallel-letter-frequency/approaches/as-parallel/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/parallel-letter-frequency/approaches/as-parallel/expected_tags.json -------------------------------------------------------------------------------- /tests/perfect-numbers/approaches/if-statements/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/perfect-numbers/approaches/if-statements/.meta/config.json -------------------------------------------------------------------------------- /tests/perfect-numbers/approaches/if-statements/PerfectNumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/perfect-numbers/approaches/if-statements/PerfectNumbers.cs -------------------------------------------------------------------------------- /tests/perfect-numbers/approaches/if-statements/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/perfect-numbers/approaches/if-statements/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/perfect-numbers/approaches/if-statements/expected_tags.json -------------------------------------------------------------------------------- /tests/perfect-numbers/approaches/switch-expression/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/perfect-numbers/approaches/switch-expression/.meta/config.json -------------------------------------------------------------------------------- /tests/perfect-numbers/approaches/switch-expression/PerfectNumbers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/perfect-numbers/approaches/switch-expression/PerfectNumbers.cs -------------------------------------------------------------------------------- /tests/perfect-numbers/approaches/switch-expression/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/perfect-numbers/approaches/switch-expression/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/perfect-numbers/approaches/switch-expression/expected_tags.json -------------------------------------------------------------------------------- /tests/phone-number/approaches/regular-expression/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/phone-number/approaches/regular-expression/.meta/config.json -------------------------------------------------------------------------------- /tests/phone-number/approaches/regular-expression/PhoneNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/phone-number/approaches/regular-expression/PhoneNumber.cs -------------------------------------------------------------------------------- /tests/phone-number/approaches/regular-expression/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/phone-number/approaches/regular-expression/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/phone-number/approaches/regular-expression/expected_tags.json -------------------------------------------------------------------------------- /tests/pig-latin/approaches/regular-expressions/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/pig-latin/approaches/regular-expressions/.meta/config.json -------------------------------------------------------------------------------- /tests/pig-latin/approaches/regular-expressions/PigLatin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/pig-latin/approaches/regular-expressions/PigLatin.cs -------------------------------------------------------------------------------- /tests/pig-latin/approaches/regular-expressions/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/pig-latin/approaches/regular-expressions/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/pig-latin/approaches/regular-expressions/expected_tags.json -------------------------------------------------------------------------------- /tests/poker/approaches/icomparer/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/poker/approaches/icomparer/.meta/config.json -------------------------------------------------------------------------------- /tests/poker/approaches/icomparer/Poker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/poker/approaches/icomparer/Poker.cs -------------------------------------------------------------------------------- /tests/poker/approaches/icomparer/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/poker/approaches/icomparer/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/poker/approaches/icomparer/expected_tags.json -------------------------------------------------------------------------------- /tests/poker/approaches/integer-score/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/poker/approaches/integer-score/.meta/config.json -------------------------------------------------------------------------------- /tests/poker/approaches/integer-score/Poker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/poker/approaches/integer-score/Poker.cs -------------------------------------------------------------------------------- /tests/poker/approaches/integer-score/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/poker/approaches/integer-score/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/poker/approaches/integer-score/expected_tags.json -------------------------------------------------------------------------------- /tests/protein-translation/approaches/linq-dict/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/linq-dict/.meta/config.json -------------------------------------------------------------------------------- /tests/protein-translation/approaches/linq-dict/ProteinTranslation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/linq-dict/ProteinTranslation.cs -------------------------------------------------------------------------------- /tests/protein-translation/approaches/linq-dict/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/linq-dict/expected_analysis.json -------------------------------------------------------------------------------- /tests/protein-translation/approaches/linq-dict/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/linq-dict/expected_tags.json -------------------------------------------------------------------------------- /tests/protein-translation/approaches/substring-dict/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/substring-dict/.meta/config.json -------------------------------------------------------------------------------- /tests/protein-translation/approaches/substring-dict/ProteinTranslation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/substring-dict/ProteinTranslation.cs -------------------------------------------------------------------------------- /tests/protein-translation/approaches/substring-dict/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/protein-translation/approaches/substring-dict/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/substring-dict/expected_tags.json -------------------------------------------------------------------------------- /tests/protein-translation/approaches/substring-switch/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/substring-switch/.meta/config.json -------------------------------------------------------------------------------- /tests/protein-translation/approaches/substring-switch/ProteinTranslation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/substring-switch/ProteinTranslation.cs -------------------------------------------------------------------------------- /tests/protein-translation/approaches/substring-switch/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/protein-translation/approaches/substring-switch/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/substring-switch/expected_tags.json -------------------------------------------------------------------------------- /tests/protein-translation/approaches/yield-dict/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/yield-dict/.meta/config.json -------------------------------------------------------------------------------- /tests/protein-translation/approaches/yield-dict/ProteinTranslation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/yield-dict/ProteinTranslation.cs -------------------------------------------------------------------------------- /tests/protein-translation/approaches/yield-dict/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/protein-translation/approaches/yield-dict/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/yield-dict/expected_tags.json -------------------------------------------------------------------------------- /tests/protein-translation/approaches/yield-switch/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/yield-switch/.meta/config.json -------------------------------------------------------------------------------- /tests/protein-translation/approaches/yield-switch/ProteinTranslation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/yield-switch/ProteinTranslation.cs -------------------------------------------------------------------------------- /tests/protein-translation/approaches/yield-switch/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/protein-translation/approaches/yield-switch/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/protein-translation/approaches/yield-switch/expected_tags.json -------------------------------------------------------------------------------- /tests/proverb/approaches/for-loop/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/proverb/approaches/for-loop/.meta/config.json -------------------------------------------------------------------------------- /tests/proverb/approaches/for-loop/Proverb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/proverb/approaches/for-loop/Proverb.cs -------------------------------------------------------------------------------- /tests/proverb/approaches/for-loop/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/proverb/approaches/for-loop/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/proverb/approaches/for-loop/expected_tags.json -------------------------------------------------------------------------------- /tests/proverb/approaches/linq/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/proverb/approaches/linq/.meta/config.json -------------------------------------------------------------------------------- /tests/proverb/approaches/linq/Proverb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/proverb/approaches/linq/Proverb.cs -------------------------------------------------------------------------------- /tests/proverb/approaches/linq/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/proverb/approaches/linq/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/proverb/approaches/linq/expected_tags.json -------------------------------------------------------------------------------- /tests/raindrops/approaches/aggregate/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/raindrops/approaches/aggregate/.meta/config.json -------------------------------------------------------------------------------- /tests/raindrops/approaches/aggregate/Raindrops.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/raindrops/approaches/aggregate/Raindrops.cs -------------------------------------------------------------------------------- /tests/raindrops/approaches/aggregate/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/raindrops/approaches/aggregate/expected_analysis.json -------------------------------------------------------------------------------- /tests/raindrops/approaches/aggregate/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/raindrops/approaches/aggregate/expected_tags.json -------------------------------------------------------------------------------- /tests/raindrops/approaches/if-statements/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/raindrops/approaches/if-statements/.meta/config.json -------------------------------------------------------------------------------- /tests/raindrops/approaches/if-statements/Raindrops.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/raindrops/approaches/if-statements/Raindrops.cs -------------------------------------------------------------------------------- /tests/raindrops/approaches/if-statements/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/raindrops/approaches/if-statements/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/raindrops/approaches/if-statements/expected_tags.json -------------------------------------------------------------------------------- /tests/reverse-string/approaches/array-reverse/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/reverse-string/approaches/array-reverse/.meta/config.json -------------------------------------------------------------------------------- /tests/reverse-string/approaches/array-reverse/ReverseString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/reverse-string/approaches/array-reverse/ReverseString.cs -------------------------------------------------------------------------------- /tests/reverse-string/approaches/array-reverse/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/reverse-string/approaches/array-reverse/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/reverse-string/approaches/array-reverse/expected_tags.json -------------------------------------------------------------------------------- /tests/reverse-string/approaches/linq/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/reverse-string/approaches/linq/.meta/config.json -------------------------------------------------------------------------------- /tests/reverse-string/approaches/linq/ReverseString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/reverse-string/approaches/linq/ReverseString.cs -------------------------------------------------------------------------------- /tests/reverse-string/approaches/linq/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/reverse-string/approaches/linq/expected_analysis.json -------------------------------------------------------------------------------- /tests/reverse-string/approaches/linq/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/reverse-string/approaches/linq/expected_tags.json -------------------------------------------------------------------------------- /tests/reverse-string/approaches/span/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/reverse-string/approaches/span/.meta/config.json -------------------------------------------------------------------------------- /tests/reverse-string/approaches/span/ReverseString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/reverse-string/approaches/span/ReverseString.cs -------------------------------------------------------------------------------- /tests/reverse-string/approaches/span/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/reverse-string/approaches/span/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/reverse-string/approaches/span/expected_tags.json -------------------------------------------------------------------------------- /tests/reverse-string/approaches/string-builder/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/reverse-string/approaches/string-builder/.meta/config.json -------------------------------------------------------------------------------- /tests/reverse-string/approaches/string-builder/ReverseString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/reverse-string/approaches/string-builder/ReverseString.cs -------------------------------------------------------------------------------- /tests/reverse-string/approaches/string-builder/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/reverse-string/approaches/string-builder/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/reverse-string/approaches/string-builder/expected_tags.json -------------------------------------------------------------------------------- /tests/rna-transcription/approaches/dictionary/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/rna-transcription/approaches/dictionary/.meta/config.json -------------------------------------------------------------------------------- /tests/rna-transcription/approaches/dictionary/RnaTranscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/rna-transcription/approaches/dictionary/RnaTranscription.cs -------------------------------------------------------------------------------- /tests/rna-transcription/approaches/dictionary/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/rna-transcription/approaches/dictionary/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/rna-transcription/approaches/dictionary/expected_tags.json -------------------------------------------------------------------------------- /tests/rna-transcription/approaches/switch-expression/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/rna-transcription/approaches/switch-expression/.meta/config.json -------------------------------------------------------------------------------- /tests/rna-transcription/approaches/switch-expression/RnaTranscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/rna-transcription/approaches/switch-expression/RnaTranscription.cs -------------------------------------------------------------------------------- /tests/rna-transcription/approaches/switch-expression/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/rna-transcription/approaches/switch-expression/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/rna-transcription/approaches/switch-expression/expected_tags.json -------------------------------------------------------------------------------- /tests/series/approaches/for-loop/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/series/approaches/for-loop/.meta/config.json -------------------------------------------------------------------------------- /tests/series/approaches/for-loop/Series.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/series/approaches/for-loop/Series.cs -------------------------------------------------------------------------------- /tests/series/approaches/for-loop/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/series/approaches/for-loop/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/series/approaches/for-loop/expected_tags.json -------------------------------------------------------------------------------- /tests/series/approaches/linq/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/series/approaches/linq/.meta/config.json -------------------------------------------------------------------------------- /tests/series/approaches/linq/Series.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/series/approaches/linq/Series.cs -------------------------------------------------------------------------------- /tests/series/approaches/linq/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/series/approaches/linq/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/series/approaches/linq/expected_tags.json -------------------------------------------------------------------------------- /tests/sieve/approaches/bit-array/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/sieve/approaches/bit-array/.meta/config.json -------------------------------------------------------------------------------- /tests/sieve/approaches/bit-array/Sieve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/sieve/approaches/bit-array/Sieve.cs -------------------------------------------------------------------------------- /tests/sieve/approaches/bit-array/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/sieve/approaches/bit-array/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/sieve/approaches/bit-array/expected_tags.json -------------------------------------------------------------------------------- /tests/sieve/approaches/hash-set/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/sieve/approaches/hash-set/.meta/config.json -------------------------------------------------------------------------------- /tests/sieve/approaches/hash-set/Sieve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/sieve/approaches/hash-set/Sieve.cs -------------------------------------------------------------------------------- /tests/sieve/approaches/hash-set/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/sieve/approaches/hash-set/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/sieve/approaches/hash-set/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/constructs/comments/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/comments/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/constructs/comments/Comments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/comments/Comments.cs -------------------------------------------------------------------------------- /tests/tags/constructs/comments/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/comments/expected_analysis.json -------------------------------------------------------------------------------- /tests/tags/constructs/comments/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/comments/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/constructs/compound-assignment/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/compound-assignment/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/constructs/compound-assignment/CompoundAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/compound-assignment/CompoundAssignment.cs -------------------------------------------------------------------------------- /tests/tags/constructs/compound-assignment/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/compound-assignment/expected_analysis.json -------------------------------------------------------------------------------- /tests/tags/constructs/compound-assignment/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/compound-assignment/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/constructs/events/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/events/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/constructs/events/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/events/Event.cs -------------------------------------------------------------------------------- /tests/tags/constructs/events/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/events/expected_analysis.json -------------------------------------------------------------------------------- /tests/tags/constructs/events/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/events/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/constructs/exceptions/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/exceptions/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/constructs/exceptions/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/exceptions/Exceptions.cs -------------------------------------------------------------------------------- /tests/tags/constructs/exceptions/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/tags/constructs/exceptions/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/exceptions/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/constructs/flow-control/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/flow-control/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/constructs/flow-control/FlowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/flow-control/FlowControl.cs -------------------------------------------------------------------------------- /tests/tags/constructs/flow-control/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/flow-control/expected_analysis.json -------------------------------------------------------------------------------- /tests/tags/constructs/flow-control/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/flow-control/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/constructs/functional/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/functional/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/constructs/functional/Functional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/functional/Functional.cs -------------------------------------------------------------------------------- /tests/tags/constructs/functional/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/functional/expected_analysis.json -------------------------------------------------------------------------------- /tests/tags/constructs/functional/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/functional/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/constructs/methods/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/methods/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/constructs/methods/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/methods/Methods.cs -------------------------------------------------------------------------------- /tests/tags/constructs/methods/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/methods/expected_analysis.json -------------------------------------------------------------------------------- /tests/tags/constructs/methods/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/methods/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/constructs/resources/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/resources/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/constructs/resources/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/resources/Resources.cs -------------------------------------------------------------------------------- /tests/tags/constructs/resources/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/tags/constructs/resources/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/resources/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/constructs/types/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/types/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/constructs/types/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/types/Types.cs -------------------------------------------------------------------------------- /tests/tags/constructs/types/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/types/expected_analysis.json -------------------------------------------------------------------------------- /tests/tags/constructs/types/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/constructs/types/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/paradigms/reflective/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/paradigms/reflective/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/paradigms/reflective/Reflective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/paradigms/reflective/Reflective.cs -------------------------------------------------------------------------------- /tests/tags/paradigms/reflective/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/tags/paradigms/reflective/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/paradigms/reflective/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/techniques/recursion/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/techniques/recursion/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/techniques/recursion/Recursion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/techniques/recursion/Recursion.cs -------------------------------------------------------------------------------- /tests/tags/techniques/recursion/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/techniques/recursion/expected_analysis.json -------------------------------------------------------------------------------- /tests/tags/techniques/recursion/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/techniques/recursion/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/uses/types/basic/framework-types/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/uses/types/basic/framework-types/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/uses/types/basic/framework-types/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/uses/types/basic/framework-types/Types.cs -------------------------------------------------------------------------------- /tests/tags/uses/types/basic/framework-types/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/tags/uses/types/basic/framework-types/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/uses/types/basic/framework-types/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/uses/types/basic/language-types/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/uses/types/basic/language-types/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/uses/types/basic/language-types/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/uses/types/basic/language-types/Types.cs -------------------------------------------------------------------------------- /tests/tags/uses/types/basic/language-types/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/tags/uses/types/basic/language-types/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/uses/types/basic/language-types/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/uses/types/basic/literals/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/uses/types/basic/literals/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/uses/types/basic/literals/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/uses/types/basic/literals/Types.cs -------------------------------------------------------------------------------- /tests/tags/uses/types/basic/literals/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/tags/uses/types/basic/literals/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/uses/types/basic/literals/expected_tags.json -------------------------------------------------------------------------------- /tests/tags/uses/types/collections/framework-types/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/uses/types/collections/framework-types/.meta/config.json -------------------------------------------------------------------------------- /tests/tags/uses/types/collections/framework-types/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/uses/types/collections/framework-types/Types.cs -------------------------------------------------------------------------------- /tests/tags/uses/types/collections/framework-types/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/tags/uses/types/collections/framework-types/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/tags/uses/types/collections/framework-types/expected_tags.json -------------------------------------------------------------------------------- /tests/two-bucket/approaches/graph-shortest-path/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-bucket/approaches/graph-shortest-path/.meta/config.json -------------------------------------------------------------------------------- /tests/two-bucket/approaches/graph-shortest-path/TwoBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-bucket/approaches/graph-shortest-path/TwoBucket.cs -------------------------------------------------------------------------------- /tests/two-bucket/approaches/graph-shortest-path/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/two-bucket/approaches/graph-shortest-path/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-bucket/approaches/graph-shortest-path/expected_tags.json -------------------------------------------------------------------------------- /tests/two-fer/approaches/method-overloading/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/approaches/method-overloading/.meta/config.json -------------------------------------------------------------------------------- /tests/two-fer/approaches/method-overloading/TwoFer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/approaches/method-overloading/TwoFer.cs -------------------------------------------------------------------------------- /tests/two-fer/approaches/method-overloading/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/approaches/method-overloading/expected_analysis.json -------------------------------------------------------------------------------- /tests/two-fer/approaches/method-overloading/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/approaches/method-overloading/expected_tags.json -------------------------------------------------------------------------------- /tests/two-fer/approaches/optional-parameter/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/approaches/optional-parameter/.meta/config.json -------------------------------------------------------------------------------- /tests/two-fer/approaches/optional-parameter/TwoFer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/approaches/optional-parameter/TwoFer.cs -------------------------------------------------------------------------------- /tests/two-fer/approaches/optional-parameter/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/approaches/optional-parameter/expected_analysis.json -------------------------------------------------------------------------------- /tests/two-fer/approaches/optional-parameter/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/approaches/optional-parameter/expected_tags.json -------------------------------------------------------------------------------- /tests/two-fer/concatenation/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/concatenation/.meta/config.json -------------------------------------------------------------------------------- /tests/two-fer/concatenation/TwoFer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/concatenation/TwoFer.cs -------------------------------------------------------------------------------- /tests/two-fer/concatenation/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/concatenation/expected_analysis.json -------------------------------------------------------------------------------- /tests/two-fer/concatenation/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/concatenation/expected_tags.json -------------------------------------------------------------------------------- /tests/two-fer/if/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/if/.meta/config.json -------------------------------------------------------------------------------- /tests/two-fer/if/TwoFer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/if/TwoFer.cs -------------------------------------------------------------------------------- /tests/two-fer/if/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/if/expected_analysis.json -------------------------------------------------------------------------------- /tests/two-fer/if/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/if/expected_tags.json -------------------------------------------------------------------------------- /tests/two-fer/interpolation/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/interpolation/.meta/config.json -------------------------------------------------------------------------------- /tests/two-fer/interpolation/TwoFer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/interpolation/TwoFer.cs -------------------------------------------------------------------------------- /tests/two-fer/interpolation/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/interpolation/expected_analysis.json -------------------------------------------------------------------------------- /tests/two-fer/interpolation/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/interpolation/expected_tags.json -------------------------------------------------------------------------------- /tests/two-fer/invalid-default-value/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/invalid-default-value/.meta/config.json -------------------------------------------------------------------------------- /tests/two-fer/invalid-default-value/TwoFer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/invalid-default-value/TwoFer.cs -------------------------------------------------------------------------------- /tests/two-fer/invalid-default-value/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/invalid-default-value/expected_analysis.json -------------------------------------------------------------------------------- /tests/two-fer/invalid-default-value/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/invalid-default-value/expected_tags.json -------------------------------------------------------------------------------- /tests/two-fer/is-null-or-empty/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/is-null-or-empty/.meta/config.json -------------------------------------------------------------------------------- /tests/two-fer/is-null-or-empty/TwoFer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/is-null-or-empty/TwoFer.cs -------------------------------------------------------------------------------- /tests/two-fer/is-null-or-empty/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/is-null-or-empty/expected_analysis.json -------------------------------------------------------------------------------- /tests/two-fer/is-null-or-empty/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/is-null-or-empty/expected_tags.json -------------------------------------------------------------------------------- /tests/two-fer/is-null-or-white-space/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/is-null-or-white-space/.meta/config.json -------------------------------------------------------------------------------- /tests/two-fer/is-null-or-white-space/TwoFer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/is-null-or-white-space/TwoFer.cs -------------------------------------------------------------------------------- /tests/two-fer/is-null-or-white-space/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/is-null-or-white-space/expected_analysis.json -------------------------------------------------------------------------------- /tests/two-fer/is-null-or-white-space/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/is-null-or-white-space/expected_tags.json -------------------------------------------------------------------------------- /tests/two-fer/null-coalescing/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/null-coalescing/.meta/config.json -------------------------------------------------------------------------------- /tests/two-fer/null-coalescing/TwoFer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/null-coalescing/TwoFer.cs -------------------------------------------------------------------------------- /tests/two-fer/null-coalescing/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/null-coalescing/expected_analysis.json -------------------------------------------------------------------------------- /tests/two-fer/null-coalescing/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/null-coalescing/expected_tags.json -------------------------------------------------------------------------------- /tests/two-fer/string.concat/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/string.concat/.meta/config.json -------------------------------------------------------------------------------- /tests/two-fer/string.concat/TwoFer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/string.concat/TwoFer.cs -------------------------------------------------------------------------------- /tests/two-fer/string.concat/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/string.concat/expected_analysis.json -------------------------------------------------------------------------------- /tests/two-fer/string.concat/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/string.concat/expected_tags.json -------------------------------------------------------------------------------- /tests/two-fer/string.format/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/string.format/.meta/config.json -------------------------------------------------------------------------------- /tests/two-fer/string.format/TwoFer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/string.format/TwoFer.cs -------------------------------------------------------------------------------- /tests/two-fer/string.format/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/string.format/expected_analysis.json -------------------------------------------------------------------------------- /tests/two-fer/string.format/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/string.format/expected_tags.json -------------------------------------------------------------------------------- /tests/two-fer/string.join/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/string.join/.meta/config.json -------------------------------------------------------------------------------- /tests/two-fer/string.join/TwoFer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/string.join/TwoFer.cs -------------------------------------------------------------------------------- /tests/two-fer/string.join/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/string.join/expected_analysis.json -------------------------------------------------------------------------------- /tests/two-fer/string.join/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/two-fer/string.join/expected_tags.json -------------------------------------------------------------------------------- /tests/weighing-machine/backing-field-should-be-private/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/backing-field-should-be-private/.meta/config.json -------------------------------------------------------------------------------- /tests/weighing-machine/backing-field-should-be-private/WeighingMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/backing-field-should-be-private/WeighingMachine.cs -------------------------------------------------------------------------------- /tests/weighing-machine/backing-field-should-be-private/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/backing-field-should-be-private/expected_analysis.json -------------------------------------------------------------------------------- /tests/weighing-machine/backing-field-should-be-private/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/backing-field-should-be-private/expected_tags.json -------------------------------------------------------------------------------- /tests/weighing-machine/exemplar/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/exemplar/.meta/config.json -------------------------------------------------------------------------------- /tests/weighing-machine/exemplar/WeighingMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/exemplar/WeighingMachine.cs -------------------------------------------------------------------------------- /tests/weighing-machine/exemplar/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/weighing-machine/exemplar/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/exemplar/expected_tags.json -------------------------------------------------------------------------------- /tests/weighing-machine/is-not-auto-property/property-precision/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/is-not-auto-property/property-precision/.meta/config.json -------------------------------------------------------------------------------- /tests/weighing-machine/is-not-auto-property/property-precision/WeighingMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/is-not-auto-property/property-precision/WeighingMachine.cs -------------------------------------------------------------------------------- /tests/weighing-machine/is-not-auto-property/property-precision/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/is-not-auto-property/property-precision/expected_analysis.json -------------------------------------------------------------------------------- /tests/weighing-machine/is-not-auto-property/property-precision/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/is-not-auto-property/property-precision/expected_tags.json -------------------------------------------------------------------------------- /tests/weighing-machine/is-not-auto-property/property-tare-adjustment/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/is-not-auto-property/property-tare-adjustment/.meta/config.json -------------------------------------------------------------------------------- /tests/weighing-machine/is-not-auto-property/property-tare-adjustment/WeighingMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/is-not-auto-property/property-tare-adjustment/WeighingMachine.cs -------------------------------------------------------------------------------- /tests/weighing-machine/is-not-auto-property/property-tare-adjustment/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/is-not-auto-property/property-tare-adjustment/expected_analysis.json -------------------------------------------------------------------------------- /tests/weighing-machine/is-not-auto-property/property-tare-adjustment/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/is-not-auto-property/property-tare-adjustment/expected_tags.json -------------------------------------------------------------------------------- /tests/weighing-machine/precision-is-not-getter-only/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/precision-is-not-getter-only/.meta/config.json -------------------------------------------------------------------------------- /tests/weighing-machine/precision-is-not-getter-only/WeighingMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/precision-is-not-getter-only/WeighingMachine.cs -------------------------------------------------------------------------------- /tests/weighing-machine/precision-is-not-getter-only/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/precision-is-not-getter-only/expected_analysis.json -------------------------------------------------------------------------------- /tests/weighing-machine/precision-is-not-getter-only/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/precision-is-not-getter-only/expected_tags.json -------------------------------------------------------------------------------- /tests/weighing-machine/round-method-called/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/round-method-called/.meta/config.json -------------------------------------------------------------------------------- /tests/weighing-machine/round-method-called/WeighingMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/round-method-called/WeighingMachine.cs -------------------------------------------------------------------------------- /tests/weighing-machine/round-method-called/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/round-method-called/expected_analysis.json -------------------------------------------------------------------------------- /tests/weighing-machine/round-method-called/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/round-method-called/expected_tags.json -------------------------------------------------------------------------------- /tests/weighing-machine/use-initializer/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/use-initializer/.meta/config.json -------------------------------------------------------------------------------- /tests/weighing-machine/use-initializer/WeighingMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/use-initializer/WeighingMachine.cs -------------------------------------------------------------------------------- /tests/weighing-machine/use-initializer/expected_analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/use-initializer/expected_analysis.json -------------------------------------------------------------------------------- /tests/weighing-machine/use-initializer/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/weighing-machine/use-initializer/expected_tags.json -------------------------------------------------------------------------------- /tests/yacht/approaches/linq/.meta/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/yacht/approaches/linq/.meta/config.json -------------------------------------------------------------------------------- /tests/yacht/approaches/linq/Yacht.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/yacht/approaches/linq/Yacht.cs -------------------------------------------------------------------------------- /tests/yacht/approaches/linq/expected_analysis.json: -------------------------------------------------------------------------------- 1 | { 2 | "comments": [] 3 | } 4 | -------------------------------------------------------------------------------- /tests/yacht/approaches/linq/expected_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exercism/csharp-analyzer/HEAD/tests/yacht/approaches/linq/expected_tags.json --------------------------------------------------------------------------------