├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── .standard.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── lib ├── lint_roller.rb └── lint_roller │ ├── about.rb │ ├── context.rb │ ├── error.rb │ ├── plugin.rb │ ├── rules.rb │ ├── support │ └── merges_upstream_metadata.rb │ └── version.rb ├── lint_roller.gemspec └── test ├── lib ├── plugin_test.rb └── support │ └── merges_upstream_metadata_test.rb ├── lint_roller_test.rb └── test_helper.rb /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/.gitignore -------------------------------------------------------------------------------- /.standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/.standard.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/bin/setup -------------------------------------------------------------------------------- /lib/lint_roller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/lib/lint_roller.rb -------------------------------------------------------------------------------- /lib/lint_roller/about.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/lib/lint_roller/about.rb -------------------------------------------------------------------------------- /lib/lint_roller/context.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/lib/lint_roller/context.rb -------------------------------------------------------------------------------- /lib/lint_roller/error.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/lib/lint_roller/error.rb -------------------------------------------------------------------------------- /lib/lint_roller/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/lib/lint_roller/plugin.rb -------------------------------------------------------------------------------- /lib/lint_roller/rules.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/lib/lint_roller/rules.rb -------------------------------------------------------------------------------- /lib/lint_roller/support/merges_upstream_metadata.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/lib/lint_roller/support/merges_upstream_metadata.rb -------------------------------------------------------------------------------- /lib/lint_roller/version.rb: -------------------------------------------------------------------------------- 1 | module LintRoller 2 | VERSION = "1.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /lint_roller.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/lint_roller.gemspec -------------------------------------------------------------------------------- /test/lib/plugin_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/test/lib/plugin_test.rb -------------------------------------------------------------------------------- /test/lib/support/merges_upstream_metadata_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/test/lib/support/merges_upstream_metadata_test.rb -------------------------------------------------------------------------------- /test/lint_roller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/test/lint_roller_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standardrb/lint_roller/HEAD/test/test_helper.rb --------------------------------------------------------------------------------