├── .github └── workflows │ ├── linters.yml │ └── tests.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .stickler.yml ├── LICENSE ├── README.md ├── bad_extension.txt ├── bin └── main.rb ├── images └── capst.PNG ├── lib ├── checker.rb ├── error_handler.rb └── modules │ ├── checker_module.rb │ └── file_reader.rb ├── spec ├── checker_spec.rb └── spec_helper.rb ├── test_bug.rb └── test_correct.rb /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.stickler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/.stickler.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/README.md -------------------------------------------------------------------------------- /bad_extension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/bad_extension.txt -------------------------------------------------------------------------------- /bin/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/bin/main.rb -------------------------------------------------------------------------------- /images/capst.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/images/capst.PNG -------------------------------------------------------------------------------- /lib/checker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/lib/checker.rb -------------------------------------------------------------------------------- /lib/error_handler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/lib/error_handler.rb -------------------------------------------------------------------------------- /lib/modules/checker_module.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/lib/modules/checker_module.rb -------------------------------------------------------------------------------- /lib/modules/file_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/lib/modules/file_reader.rb -------------------------------------------------------------------------------- /spec/checker_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/spec/checker_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /test_bug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/test_bug.rb -------------------------------------------------------------------------------- /test_correct.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pacyL2K19/my_ruby_linter/HEAD/test_correct.rb --------------------------------------------------------------------------------