mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 05:11:16 +00:00
Bug 1239437 - Allow run_test to be unused in xpcshell tests. r=pbrosset
This commit is contained in:
parent
291fcf80ac
commit
482e796bd3
@ -1,4 +1,4 @@
|
||||
// Parent config file for all devtools browser mochitest files.
|
||||
// Parent config file for all devtools xpcshell files.
|
||||
{
|
||||
"extends": [
|
||||
"../testing/xpcshell/xpcshell.eslintrc"
|
||||
@ -12,6 +12,8 @@
|
||||
// Note that bug 1168340 will eventually help auto-registering globals
|
||||
// from head.js files.
|
||||
"no-undef": 0,
|
||||
"block-scoped-var": 0
|
||||
"block-scoped-var": 0,
|
||||
// Allow run_test to be unused in xpcshell
|
||||
"no-unused-vars": [2, { "varsIgnorePattern": "run_test" }],
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user