gecko-dev/dom/abort/tests/.eslintrc.js

19 строки
268 B
JavaScript

"use strict";
module.exports = {
"extends": [
"plugin:mozilla/mochitest-test",
],
"plugins": [
"mozilla"
],
"rules": {
"brace-style": "off",
"no-shadow": "off",
},
"globals": {
"AbortController": true,
"AbortSignal": true
}
};