clutchski/coffeelint

Why ignore indentation inside arrays?

Opened this issue · 0 comments

This comment provides a use case, but IMO people should just write it like this:

x = [
  "foo"
  "bar"
]

In my case, I found that coffeelint wasn't catching incorrect indentation for the following code (setting was at the default, 2 spaces):

angular.module 'myApp', [
    'ui.router'
]

.config [
    '$stateProvider'
    '$urlRouterProvider'
    ($stateProvider, $urlRouterProvider) ->
        $urlRouterProvider.otherwise '/'
        $stateProvider.state 'main',
            url: '/'
            template: '<div><p>Hello, world!</p></div>'
]