├── .github └── workflows │ ├── linters.yml │ └── tests.yml ├── .rspec ├── .rubocop.yml ├── README.md ├── bin ├── bug_file │ └── test.rb └── main.rb ├── lib ├── colors.rb ├── department.rb ├── files.rb ├── layout.rb ├── metrics.rb └── naming.rb └── spec ├── mock-test └── examples.rb ├── rubocop_spec.rb └── spec_helper.rb /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/README.md -------------------------------------------------------------------------------- /bin/bug_file/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/bin/bug_file/test.rb -------------------------------------------------------------------------------- /bin/main.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/bin/main.rb -------------------------------------------------------------------------------- /lib/colors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/lib/colors.rb -------------------------------------------------------------------------------- /lib/department.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/lib/department.rb -------------------------------------------------------------------------------- /lib/files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/lib/files.rb -------------------------------------------------------------------------------- /lib/layout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/lib/layout.rb -------------------------------------------------------------------------------- /lib/metrics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/lib/metrics.rb -------------------------------------------------------------------------------- /lib/naming.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/lib/naming.rb -------------------------------------------------------------------------------- /spec/mock-test/examples.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/spec/mock-test/examples.rb -------------------------------------------------------------------------------- /spec/rubocop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/spec/rubocop_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Georjane/Ruby-Linters/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------