mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-07 03:38:51 +02:00
The base .eslintrc is essentially a merge of the root Toolkit .eslintrc and the devtools .eslintrc, with some minor changes to match our prevalent style. For the most enforces the coding styles that we've been using most consistently. There are a couple of significant differences, though: * The rule for opening brace alignment can only be applied globally, and doesn't make exceptions for top-level functions. I chose to turn it on, and change the brace style of existing top-level functions that violated it, since the rule seemed worth using, and that's the direction most Toolkit JS code has been headed anyway. * The rule for switch/case statements requires an added indentation level for case statements. Most of our switch statements did not use an extra level of indentation, and I initially wrote the rule to enforce that style, until I came across case statements that used blocks, and required the extra indentation level for sanity. --HG-- rename : devtools/.eslintrc => toolkit/components/extensions/.eslintrc extra : commitid : 4aDZOi5MNPc extra : rebase_source : f34ba43aeb8046a0c971cb76b76410497bd12b42 extra : source : 2a7eb4ef7b375e5fd52d843ca206a071367a6475
3 lines
38 B
JavaScript
3 lines
38 B
JavaScript
"use strict";
|
|
|
|
window.failure = true;
|