JavaSee
Supported Version | Language | Website |
---|---|---|
0.2.0 | Java | https://github.com/sider/JavaSee |
JavaSee is a customizable linter for Java code. It has no rules and you can define your own rules in your YAML file.
Getting Started
To start using JavaSee, enable it in your repository settings and put a configuration file javasee.yml
in your repository.
Configuration
You can customize JavaSee analysis using sider.yml
. For example:
linter:
javasee:
config: my_javasee.yml
dir:
- src
- test
Name | Type | Default |
---|---|---|
root_dir | string | - |
config | string | - |
dir | string , string[] | - |
config
This option allows you to specify your configuration file path for JavaSee.
If omitted, the default javasee.yml
will be used.
dir
This option allows you to specify directories to analyze. If omitted, all the Java files in your repository will be analyzed.