зеркало из https://github.com/mozilla/gecko-dev.git
30 строки
785 B
JavaScript
30 строки
785 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
"extends": [
|
|
"../toolkit/.eslintrc.js"
|
|
],
|
|
rules: {
|
|
/* These rules are only set to warn temporarily
|
|
until they get fixed, at which point their
|
|
respective line in this file should be removed. */
|
|
"brace-style": "warn",
|
|
"consistent-return": "warn",
|
|
"no-cond-assign": "warn",
|
|
"no-else-return": "warn",
|
|
"no-empty": "warn",
|
|
"no-ex-assign": "warn",
|
|
"no-func-assign": "warn",
|
|
"no-irregular-whitespace": "warn",
|
|
"no-mixed-spaces-and-tabs": "warn",
|
|
"no-native-reassign": "warn",
|
|
"no-nested-ternary": "warn",
|
|
"no-octal": "warn",
|
|
"no-redeclare": "warn",
|
|
"no-unreachable": "warn",
|
|
"no-unsafe-finally": "warn",
|
|
"no-unused-vars": "warn",
|
|
"no-useless-call": "warn"
|
|
}
|
|
};
|