Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@
"-//Puppy Crawl//DTD Check Configuration 1.3//EN"
"http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
<!--
In order to be compatible with CodeClimate, we have to stay in sync with the version of Checkstyle that they are using.
It doesn't seem to be updated much by default, but we can specify a channel, which is currently using 10.7.0.
Check the links below to get up-to-date version information.
https://github.com/codeclimate/codeclimate-checkstyle/branches/all (channel/ branches)
https://docs.codeclimate.com/docs/checkstyle
https://github.com/codeclimate/codeclimate-checkstyle/blob/master/bin/install-checkstyle.sh
In order to be compatible with qlty, we have to stay in sync with the version of Checkstyle that they are using.
It doesn't seem to be documented at an obvious location, but can be looked up in the plugin definition:
https://github.com/qltysh/qlty/blob/main/qlty-plugins/plugins/linters/checkstyle/plugin.toml
The version at the time of writing is 11.0.0.
-->

<module name="Checker">
Expand Down
39 changes: 0 additions & 39 deletions .codeclimate.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .idea/checkstyle-idea.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .qlty/qlty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
config_version = "0"

# Don't check test scope
exclude_patterns = ["src/test/java/**"]

[[plugin]]
name = "checkstyle"
enabled = true
config_files = [".checkstyle.xml"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[![Build Status](https://github.com/AuthMe/ConfigMe/actions/workflows/maven_jdk8.yml/badge.svg)](https://github.com/AuthMe/ConfigMe/actions?query=branch%3Amaster)
[![Coverage Status](https://coveralls.io/repos/github/AuthMe/ConfigMe/badge.svg?branch=master)](https://coveralls.io/github/AuthMe/ConfigMe?branch=master)
[![Javadocs](https://www.javadoc.io/badge/ch.jalu/configme.svg)](https://www.javadoc.io/doc/ch.jalu/configme)
[![Code Climate](https://codeclimate.com/github/AuthMe/ConfigMe/badges/gpa.svg)](https://codeclimate.com/github/AuthMe/ConfigMe)
[![Maintainability](https://qlty.sh/gh/AuthMe/projects/ConfigMe/maintainability.svg)](https://qlty.sh/gh/AuthMe/projects/ConfigMe)

A simple configuration management library with YAML support out of the box.

Expand Down