33 lignes
639 B
JavaScript
33 lignes
639 B
JavaScript
|
/* jshint esversion: 9 */
|
||
|
/* global module */
|
||
|
|
||
|
module.exports = {
|
||
|
|
||
|
options: {
|
||
|
"asi" : true,
|
||
|
"expr" : true,
|
||
|
"jquery" : true,
|
||
|
"laxbreak" : true,
|
||
|
"nonbsp" : true,
|
||
|
"strict" : true,
|
||
|
"curly": true,
|
||
|
"latedef": true,
|
||
|
"undef": true,
|
||
|
"unused": true,
|
||
|
"eqeqeq": true,
|
||
|
"eqnull": true,
|
||
|
"browser": true,
|
||
|
"esversion": 9,
|
||
|
"evil": true,
|
||
|
globals: {
|
||
|
"console": true,
|
||
|
"d3_extsearch_popup": true
|
||
|
}
|
||
|
},
|
||
|
module: {
|
||
|
src: [
|
||
|
"origin/js/*.js"
|
||
|
]
|
||
|
}
|
||
|
};
|