mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-10-31 15:05:46 +00:00
14 lines
210 B
Plaintext
14 lines
210 B
Plaintext
|
{
|
||
|
"extends": [
|
||
|
"../toolkit/.eslintrc"
|
||
|
],
|
||
|
|
||
|
"rules": {
|
||
|
// No redeclaring variables
|
||
|
"no-redeclare": 2,
|
||
|
|
||
|
// Functions must always return something or nothing
|
||
|
"consistent-return": 2,
|
||
|
}
|
||
|
}
|