mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 13:17:53 +00:00
a224711dce
...to allow code editors etc to pick up on rules, per https://github.com/nasa/openmct/pull/724#issuecomment-193542314
23 lines
398 B
Plaintext
23 lines
398 B
Plaintext
{
|
|
"bitwise": true,
|
|
"browser": true,
|
|
"curly": true,
|
|
"eqeqeq": true,
|
|
"forin": true,
|
|
"freeze": true,
|
|
"funcscope": true,
|
|
"futurehostile": true,
|
|
"latedef": true,
|
|
"noarg": true,
|
|
"nocomma": true,
|
|
"nonbsp": true,
|
|
"nonew": true,
|
|
"predef": [
|
|
"define",
|
|
"Promise"
|
|
],
|
|
"strict": "implied",
|
|
"undef": true,
|
|
"unused": "vars"
|
|
}
|