Bug 1371405 - Update vendored WebDriver crate; r=jgraham
[gecko.git] / .eslintrc.js
blob7379d8a483ba08196ee3fe77559bfbbdc46dae53
1 "use strict";
3 module.exports = {
4   // New rules and configurations should generally be added in
5   // tools/lint/eslint/eslint-plugin-mozilla/lib/configs/recommended.js to
6   // allow external repositories that use the plugin to pick them up as well.
7   "extends": [
8     "plugin:mozilla/recommended"
9   ],
10   "plugins": [
11     "mozilla"
12   ],
13   // The html plugin is enabled via a command line option on eslint. To avoid
14   // bad interactions with the xml preprocessor in eslint-plugin-mozilla, we
15   // turn off processing of the html plugin for .xml files.
16   "settings": {
17     "html/xml-extensions": [ ".xhtml" ]
18   },