mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
MozReview-Commit-ID: GD8JBz4DLds --HG-- extra : rebase_source : b3450cf775c5f60a98168b390c6548213129d15c
12 lines
293 B
JavaScript
12 lines
293 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
"rules": {
|
|
"indent": ["error", 2, { "SwitchCase": 1 }],
|
|
"new-parens": "error",
|
|
"no-inner-declarations": "error",
|
|
"no-shadow": "error",
|
|
"no-unused-vars": ["error", {"vars": "all", "args": "none"}],
|
|
"semi": ["error", "always"],
|
|
},
|
|
}
|