pmd/docs/index.md

118 lines
3.3 KiB
Markdown
Raw Normal View History

2016-09-07 16:10:48 -04:00
---
title: PMD Documentation website
2016-09-07 22:17:39 -04:00
keywords: java
2016-09-07 16:10:48 -04:00
permalink: index.html
2017-08-18 10:33:43 +02:00
toc: false
summary: >
Welcome to PMD, an extensible cross-language static code analyzer.
It finds common programming flaws like unused variables, empty catch blocks, unnecessary object creation,
and so forth. Additionally it includes CPD, the copy-paste-detector. CPD finds duplicated code.
last_updated: August 2017
author: Jeff Jensen <jjensen@apache.org>, Andreas Dangel <andreas.dangel@adangel.org>
2016-09-07 16:10:48 -04:00
---
<!-- ## Welcome to PMD! -->
<!-- First time user? Then you may be interested in our [quickstart series](TODO)! -->
<br/>
2018-05-21 08:30:37 +02:00
{% unless site.output == "pdf" %}
<script src="js/jquery.shuffle.min.js"></script>
<script src="js/jquery.ba-throttle-debounce.min.js"></script>
{% endunless %}
2018-05-23 02:44:30 +02:00
<div class="col-lg-12" id='grid-rule' />
2018-05-21 08:30:37 +02:00
<div class="filter-options">
<button class="btn btn-primary" data-group="all">All</button>
<button class="btn btn-primary" data-group="getting_started">Getting Started</button>
<button class="btn btn-primary" data-group="userdocs">User documentation</button>
<button class="btn btn-primary" data-group="extending">Extending PMD</button>
<button class="btn btn-primary" data-group="contributing">Contributing</button>
</div>
<div id="grid" class="row">
{% include custom/shuffle_panel.html
2018-05-21 08:30:37 +02:00
tags="getting_started"
datagroups='["getting_started"]'
description="These pages summarize the gist of PMD usage to get you started quickly."
2018-05-21 06:29:30 +02:00
title="Getting started" %}
{% include custom/shuffle_panel.html
2018-05-21 08:30:37 +02:00
tags="rule_references"
datagroups='["userdocs"]'
title="Rule references"
2018-05-21 08:30:37 +02:00
description="Pick your language to find out about the rule it supports."
image="fa-database"
titlemaker="page.language_name" %}
2018-05-21 08:30:37 +02:00
{% include custom/shuffle_panel.html
tags="userdocs,extending"
datagroups='["userdocs", "extending", "contributing"]'
2018-05-21 08:30:37 +02:00
title="Writing rules"
description="These pages document the process of writing and testing custom rules and metrics for PMD."
%}
{% include custom/shuffle_panel.html
tags="userdocs"
except_tags="extending,tools"
datagroups='["userdocs"]'
image="fa-cog"
title="Usage and configuration"
description="Learn how to build effective and versatile rulesets."
%}
{% include custom/shuffle_panel.html
tags="devdocs"
except_tags="extending"
datagroups='["contributing"]'
image="fa-github"
title="Contributing"
description="If you'd like to help us build PMD, these topics may interest you. See you around!"
%}
{% include custom/shuffle_panel.html
tags="tools"
datagroups='["userdocs"]'
title="Tools and integrations"
description="These pages describe solutions that integrate PMD within your build process."
%}
{% include custom/shuffle_panel.html
tags="devdocs,extending"
datagroups='["contributing","extending"]'
title="Major contributions"
description=""
%}
<!-- sizer -->
<div class="col-xs-6 col-sm-4 col-md-1 shuffle_sizer"></div>
2018-05-21 08:30:37 +02:00
</div>
<!-- {% include image.html file="pmd-logo-big.png" alt="PMD Logo" %} -->
2016-09-07 16:10:48 -04:00
2018-05-21 08:30:37 +02:00
{% unless site.output == "pdf" %}
2018-05-22 17:09:26 +02:00
{% include initialize_shuffle.html %}
2018-05-21 08:30:37 +02:00
{% endunless %}
2016-09-07 16:10:48 -04:00
{% include links.html %}