19 lines
263 B
JavaScript
19 lines
263 B
JavaScript
|
module.exports = {
|
||
|
|
||
|
options: {
|
||
|
curly: true,
|
||
|
eqeqeq: false,
|
||
|
eqnull: true,
|
||
|
browser: true,
|
||
|
globals: {
|
||
|
jQuery: true
|
||
|
}
|
||
|
},
|
||
|
module: {
|
||
|
src: [
|
||
|
"origin/js/*.js"
|
||
|
]
|
||
|
}
|
||
|
|
||
|
};
|