The whole idea of writing the code to check another code is intriguing at the same time cognitively demanding. Building Linters for Ruby, the project provides feedback about errors or warnings in code little by little. The project was built completely with Ruby following all possible best practices. Rubocop was used as a code-linter alongside Gitflow to ensure I maintain good coding standards.
The custom Ruby linter currently checks/detects for the following errors/warnings.
check for trailing white spaces
check for missing/unexpected tags i.e. '( )', '[ ]', and '{ }'
check missing/unexpected end
check empty line error
Below are demonstrations of good and bad code for the above cases.
class Dog
def initialize(breed, cost)
@breed = breed
@cost = cost
end
end
## Bad Code
class Dog
def initialize(breed, cost)
@breed = breed
@cost = cost}
end
end
class Dog
def initialize(breed, cost)
@breed = breed
@cost = cost
end
end
## Bad Code
class Dog
def initialize(breed, cost)
@breed = breed
@cost = cost}
end
class Dog
def initialize(breed, cost)
@breed = breed
@cost = cost
end
end
## Bad Code
class Dog
def initialize(breed, cost)
@breed = breed
@cost = cost
end
class Dog
def initialize(breed, cost)
@breed = breed
@cost = cost
end
def dog_food(quantity)
quantity.each do |item|
puts item
end
end
end
## Bad Code
class Dog
def initialize(breed, cost)
@breed = breed
@cost = cost
end
def dog_food(quantity)
quantity.each do |item|
puts item
end
end
end
- Ruby
- RSpec for Ruby Testing
To get a local copy of the repository please run the following commands on your terminal:
$ cd
$ git clone https://github.com/imran5644/ruby_linters.git
$ bundle install
To run local copy of the repository please run the following commands on your terminal:
~~bash $ ruby test.rb
To test the code, run rspec from root of the folder using terminal. Note: bug.rb has been excluded from rubocop checks to allow RSpec testing without interfering with Gitflow actions
Rspec is used for the test, to install the gem file,
But before that, make sure you have bundler installed on your system, else run
$ gem install bundler or you simply install the the following directly using
$ gem install rspec
$ gem install colorize
$ run rspec
👤 Imran Yousaf
- Github: @imran5644
- Twitter: @imran56444
- Linkedin: Imran Yousaf
Contributions, issues, and feature requests are welcome!
Feel free to check the issues page.
Give a ⭐️ if you like this project!
- The Odin Project[https://www.theodinproject.com/courses/ruby-programming/]
This project is MIT licensed.
Project inspired by Microverse