source: josm/trunk/tools/checkstyle/plugin.xml@ 19519

Last change on this file since 19519 was 19519, checked in by stoecker, 15 hours ago

unify eol-style

  • Property svn:eol-style set to LF
File size: 1.2 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<?eclipse version="3.4"?>
3<plugin>
4
5 <!-- This plugin provides custom Checkstyle modules. -->
6 <extension
7 point="net.sf.eclipsecs.core.checkstyleAddonProvider">
8 </extension>
9
10 <!-- This plugin provides custom quickfixes for Checkstyle problems.
11 <extension
12 point="net.sf.eclipsecs.ui.checkstyleQuickfixProvider">
13 </extension>-->
14
15 <!--
16 builtin check configuration
17 -->
18 <extension
19 id="checkstyle.CheckConfiguration"
20 point="net.sf.eclipsecs.core.configurations">
21 <check-configuration
22 name="JOSM Checkstyle checks"
23 location="josm_checks.xml"
24 description="JOSM Checkstyle checks"
25 default-weight="2">
26 </check-configuration>
27 </extension>
28
29 <!--
30 checkstyle plugin filter
31
32 <extension
33 id="checkstyle.CheckstyleFilters"
34 point="net.sf.eclipsecs.core.filters">
35 <filter
36 name="Sample Filter"
37 internal-name="SampleFilter"
38 description="Sample Filter (doing nothing)"
39 class="net.sf.eclipsecs.sample.filter.SampleFilter"/>
40 </extension>-->
41</plugin>
Note: See TracBrowser for help on using the repository browser.