mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-30 19:28:40 +09:00
17 lines
376 B
JavaScript
17 lines
376 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
// Extend from the shared list of defined globals for mochitests.
|
|
"extends": "../../../../../.eslintrc.mochitests.js",
|
|
"globals": {
|
|
"run_test": true,
|
|
"run_next_test": true,
|
|
"equal": true,
|
|
"do_print": true,
|
|
"waitUntilState": true
|
|
},
|
|
"rules": {
|
|
// Stop giving errors for run_test
|
|
"camelcase": "off"
|
|
}
|
|
};
|