1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-21 07:46:42 +02:00
TableFilter/.jshintrc
2015-04-28 00:26:59 +10:00

31 lines
602 B
Plaintext

{
// ["xxx"] is better written in dot notation
"-W069": true,
// Script URL
"-W107": true,
// Eval can be harmful
"-W061": true,
"-W041": true,
// Wrap the /regexp/ literal in parens to disambiguate the slash operator
"-W092": true,
// Reserved words
"-W024": true,
"curly": true,
//"indent": 4,
//"eqeqeq": true,
"es3": true,
"esnext": true,
//"maxlen" : 80,
"globals": {
"System": true,
"module": true,
"require": true,
"define": true,
"window": true,
"document": true,
"escape": true,
"unescape": true,
"navigator": true
}
}