ZeroOmega/omega-web/grunt/coffeelint.coffee
FelisCatus 6c66169781 Update coffeelint to 1.16.0 and ignore some rules. Fix #967.
line_endings disabled due to git autocrlf.
indentation disabled due to bug with function argument wrapping.
2017-03-25 20:12:04 -04:00

21 lines
589 B
CoffeeScript

module.exports =
options:
arrow_spacing: level: 'error'
colon_assignment_spacing:
level: 'error'
spacing:
left: 0
right: 1
missing_fat_arrows: level: 'warn'
no_empty_functions: level: 'error'
no_empty_param_list: level: 'error'
no_interpolation_in_single_quotes: level: 'error'
no_stand_alone_at: level: 'error'
space_operators: level: 'error'
# https://github.com/clutchski/coffeelint/issues/525
indentation: level: 'ignore'
gruntfile: ['Gruntfile.coffee']
tasks: ['grunt/**/*.coffee']
src: ['src/**/*.coffee']