giovannicandido / generator-spring-spa

Best practices and production quality to start with a modern FrontEnd in AngularJS 2 or Aurelia, backend by Java Spring Boot Framework
MIT License
7 stars 4 forks source link

Exclude .wercker from IDEA #2

Closed giovannicandido closed 7 years ago

giovannicandido commented 7 years ago

The .wercker folder when indexed by intellij idea takes a long time.

It can be ignored in gradle settings.

configure(allprojects) {
    apply plugin: 'idea'
    idea {
        module {
            excludeDirs += file('.wercker')
        }
    }
}