diff --git a/config.json b/config.json index 5144a55d..ca3e923f 100644 --- a/config.json +++ b/config.json @@ -881,4 +881,4 @@ "typing/weak", "used_for/scripts" ] -} \ No newline at end of file +} diff --git a/exercises/practice/camicia/.meta/config.json b/exercises/practice/camicia/.meta/config.json index 5e26dca5..4907a3fb 100644 --- a/exercises/practice/camicia/.meta/config.json +++ b/exercises/practice/camicia/.meta/config.json @@ -16,4 +16,4 @@ "blurb": "Simulate the card game and determine whether the match ends or enters an infinite loop.", "source": "Beggar-My-Neighbour", "source_url": "https://www.richardpmann.com/beggar-my-neighbour-records.html" -} \ No newline at end of file +} diff --git a/exercises/practice/circular-buffer/circular_buffer.vader b/exercises/practice/circular-buffer/circular_buffer.vader index d9e409c9..51788dbf 100644 --- a/exercises/practice/circular-buffer/circular_buffer.vader +++ b/exercises/practice/circular-buffer/circular_buffer.vader @@ -103,4 +103,3 @@ Execute (initial clear does not affect wrapping around): AssertEqual g:buffer.Read(), 4 AssertThrows call g:buffer.Read() AssertEqual "Empty buffer", g:vader_exception - \ No newline at end of file diff --git a/exercises/practice/leap/.approaches/if-else-statements/content.md b/exercises/practice/leap/.approaches/if-else-statements/content.md index 3cb87f19..a63c1dd5 100644 --- a/exercises/practice/leap/.approaches/if-else-statements/content.md +++ b/exercises/practice/leap/.approaches/if-else-statements/content.md @@ -19,4 +19,4 @@ The clauses for each are checked sequentially until one produces a truthy value. Each clause checks if a year is evenly divisible by another number by checking the remainder of their division. If a year is evenly divisible by 400, the first clause produces a truthy value so the command within the if branch is executed, returning 1. If it's not evenly divisible, Vim proceeds to the next clause until one produces a truthy value or the else statement is hit. -In that case, 0 is returned because the year failed all three checks. \ No newline at end of file +In that case, 0 is returned because the year failed all three checks. diff --git a/exercises/practice/leap/.approaches/if-else-statements/snippet.txt b/exercises/practice/leap/.approaches/if-else-statements/snippet.txt index de20d2de..fb260c9e 100644 --- a/exercises/practice/leap/.approaches/if-else-statements/snippet.txt +++ b/exercises/practice/leap/.approaches/if-else-statements/snippet.txt @@ -5,4 +5,4 @@ function! LeapYear(year) abort return 0 elseif a:year % 4 == 0 return 1 -# cut for snippet brevity \ No newline at end of file +# cut for snippet brevity diff --git a/exercises/practice/perfect-numbers/.meta/example.vim b/exercises/practice/perfect-numbers/.meta/example.vim index 53b40d5d..611997b5 100644 --- a/exercises/practice/perfect-numbers/.meta/example.vim +++ b/exercises/practice/perfect-numbers/.meta/example.vim @@ -26,4 +26,4 @@ function! Classify(number) abort else return 'abundant' endif -endfunction \ No newline at end of file +endfunction diff --git a/exercises/practice/word-count/.meta/example.vim b/exercises/practice/word-count/.meta/example.vim index f782831a..24b4c805 100644 --- a/exercises/practice/word-count/.meta/example.vim +++ b/exercises/practice/word-count/.meta/example.vim @@ -9,4 +9,4 @@ function! WordCount(phrase) endfor return words -endfunction \ No newline at end of file +endfunction