After the previous patch, all that is needed to pass eslint is some whitespace fixes I generated using: ./mach eslint --fix ipc The .eslintrc.js file makes eslint expect XPCShell global variables. With those two changes, eslint can be enabled for the ipc/ directory. MozReview-Commit-ID: BqSICp2iV6O
8 lines
91 B
JavaScript
8 lines
91 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
"extends": [
|
|
"plugin:mozilla/xpcshell-test"
|
|
]
|
|
};
|