mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2025-01-15 15:40:53 +01:00
32 lines
637 B
Text
32 lines
637 B
Text
{
|
|
|
|
// Enforcing options
|
|
// http://www.jshint.com/docs/options/#enforcing-options
|
|
|
|
"bitwise": true,
|
|
"eqeqeq": true,
|
|
"forin": true,
|
|
"latedef": true,
|
|
"noarg": true,
|
|
"nonbsp": true,
|
|
"nonew": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
// Relaxing options
|
|
// http://www.jshint.com/docs/options/#relaxing-options
|
|
|
|
"esnext": true,
|
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
// Environments
|
|
// http://www.jshint.com/docs/options/#environments
|
|
|
|
"browser": true,
|
|
"jquery": true,
|
|
"node": true
|
|
|
|
}
|