This repository has been archived by the owner on Oct 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.coffee
executable file
·52 lines (48 loc) · 1.71 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
exports.config =
# See docs at http://brunch.readthedocs.org/en/latest/config.html.
coffeelint:
pattern: /^app\/.*\.coffee$/
options:
indentation:
value: 4
level: "ignore"
max_line_length:
value: 80
level: "ignore"
no_trailing_whitespace:
level: "ignore"
no_trailing_semicolons:
level: "ignore"
no_backticks:
level: "ignore"
files:
javascripts:
joinTo:
'javascripts/vendor.js' : /^(vendor)|(CNeditor)/
'javascripts/app.js' : /^app/
'javascripts/tests.js' : /^test/
order:
before: [
'vendor/scripts/CNeditor-dependencies/jquery-1.8.2.js'
'vendor/scripts/CNeditor-dependencies/bootstrap-datepicker.js'
'vendor/scripts/underscore-1.4.4.js'
'vendor/scripts/backbone-1.0.0.js'
]
stylesheets:
joinTo:
'stylesheets/app.css': /(^app\/CNeditor)|(^vendor\/styles)|(^app\/views\/styles)/
'stylesheets/CNeditor.css': /(^app\/CNeditor\/)/
order:
before: [
'vendor/styles/normalize.css'
'app/CNeditor/datepicker.css'
]
after: ['vendor/styles/helpers.css']
templates:
defaultExtension: 'jade'
joinTo: 'javascripts/app.js'
#modules:
#definition: (path, data) ->
#data += """
#selection = exports.selection;
#"""