Skip to content

Ant tasks for checking whether project files comply with format rules defined in .editorconfig files and eventually also for fixing the violations

License

Notifications You must be signed in to change notification settings

ec4j/editorconfig-ant-tasks

Folders and files

Image for: Folders and files
NameName
Last commit message
Last commit date

Latest commit

Image for: Latest commit
 

History

Image for: History
16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Image for: Repository files navigation

editorconfig-ant-tasks

editorconfig-ant-tasks provides Ant tasks for checking whether project files comply with format rules defined in .editorconfig files and eventually also for fixing the violations.

⚠️
editorconfig-ant-tasks are new. Expect issues of all kinds which is not to say that you should not report them :)

Basic usage

Image for: Basic usage

editorconfig-ant-tasks requires Java 7+ and Ant 1.8.0+.

Basic build.xml file:

<project name="editorconfig-example" basedir="." xmlns:ec4j="antlib:org.ec4j.ant">

  <taskdef uri="antlib:org.ec4j.ant" resource="org/ec4j/ant/antlib.xml">
    <classpath>
      <fileset dir="...">
        <include name="editorconfig-ant-tasks-*.jar"/>
        <include name="libs/*.jar"/>
      </fileset>
    </classpath>
  </taskdef>

  <target name="editorconfigCheck">
    <!-- This checks whether the source tree complies with the rules defined in the .editorconfig file -->
    <ec4j:editorconfigCheck />
  </target>

  <target name="editorconfigFormat">
    <!-- This fixes any violations against the rules defined in the .editorconfig file -->
    <ec4j:editorconfigFormat />
  </target>

</project>

To check whether any of your source files does not comply with .editorconfig rules run

ant editorconfigCheck

In case any violations are detected, you may want to fix them automagically by running

ant editorconfigFormat

Configuration

Image for: Configuration

TODO

How to build

Image for: How to build

Prerequisites:

  • Java 7+

  • Optionally Maven 3.5.0+, unless you want to use ./mvnw or mvnw.bat delivered by the project

The most common build with unit tests:

./mvnw clean install

On Windows:

.\mvnw.cmd clean install

Misc.

Image for: Misc.

About

Image for: About

Ant tasks for checking whether project files comply with format rules defined in .editorconfig files and eventually also for fixing the violations

Topics

Resources

License

Stars

Watchers

Forks

Packages

Image for: Packages 0
No packages published

Languages

Image for: Languages