mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 05:37:53 +00:00
031a46aa8e
Add JSHint rules to complement allowing multiple var statements, https://github.com/nasa/openmct/issues/142#issuecomment-212187972 [Code Style] Require one decl per var [Code Style] Don't require separate var decls ...but allow them (for compatibility with existing code style) [Code Style] Allow var decl after start of scope [Code Style] Enforce codestyle during verify task
24 lines
422 B
Plaintext
24 lines
422 B
Plaintext
{
|
|
"bitwise": true,
|
|
"browser": true,
|
|
"curly": true,
|
|
"eqeqeq": true,
|
|
"forin": true,
|
|
"freeze": true,
|
|
"funcscope": false,
|
|
"futurehostile": true,
|
|
"latedef": true,
|
|
"noarg": true,
|
|
"nocomma": true,
|
|
"nonbsp": true,
|
|
"nonew": true,
|
|
"predef": [
|
|
"define",
|
|
"Promise"
|
|
],
|
|
"shadow": "inner",
|
|
"strict": "implied",
|
|
"undef": true,
|
|
"unused": "vars"
|
|
}
|