-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.coffee
39 lines (35 loc) · 884 Bytes
/
config.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# See http://brunch.readthedocs.org/en/latest/config.html for documentation.
exports.config =
files:
javascripts:
joinTo:
'javascripts/app.js': /^app/
'javascripts/vendor.js': /^vendor\/scripts/
order:
before: [
'vendor/scripts/jquery-2.0.2.js'
'vendor/scripts/consolelog.js'
]
stylesheets:
joinTo:
'stylesheets/app.css': /app\/styles\/.*\.css/
order:
before: [
# 'vendor/styles/normalize.css'
]
after: [
# 'vendor/styles/helpers.css'
]
templates:
joinTo: 'javascripts/app.js'
conventions:
assets: /(^vendor.*|^app|^test)\/assets\//
coffeelint:
pattern: /^app\/.*\.coffee$/
options:
max_line_length:
value: 100
level: "error"
indentation:
value: 2
level: "error"