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.
8 "plugin:mozilla/recommended"
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.
17 "html/xml-extensions": [ ".xhtml" ]
21 // eslint-plugin-html handles eol-last slightly different - it applies to
22 // each set of script tags, so we turn it off here.
23 "files": "**/*.*html",
28 // These xbl bindings are assumed to be in the browser-window environment,
29 // we would mark it in the files, but ESLint made this more difficult with
30 // our xml processor, so we list them here. Bug 1397874 & co are working
31 // towards removing these files completely.
33 "browser/base/content/tabbrowser.xml",
34 "browser/base/content/urlbarBindings.xml",
35 "browser/components/search/content/search.xml",
36 "browser/components/translation/translation-infobar.xml",
37 "toolkit/components/prompts/content/tabprompts.xml"
40 "mozilla/browser-window": true
43 // XXX Bug 1421969. These files/directories are still being fixed,
44 // so turn off mozilla/use-services for them for now.
49 "mozilla/use-services": "off",
52 // XXX Bug 1436303. These directories are still being fixed, so turn off
53 // mozilla/no-cc-etc for now.
58 "mozilla/no-define-cc-etc": "off",