ditinc / linter-cflint

:shirt: CFLint plugin for Atom Linter
MIT License
4 stars 7 forks source link

False warning returned - Component name source is not a valid name #17

Closed chapmandu closed 8 years ago

chapmandu commented 8 years ago

The code below produces the warning "Component name source is not a valid name. Please use CamelCase and start with a capital letter."

component extends="Controller" output=false {

  public void function init() {
    super.init();
  }

}