mirror of
https://github.com/Mibew/mibew.git
synced 2025-02-12 10:31:09 +03:00
27 lines
643 B
Plaintext
27 lines
643 B
Plaintext
|
{
|
||
|
"extends": "eslint:recommended",
|
||
|
"rules": {
|
||
|
"indent": ["error", 4, {"SwitchCase": 1}],
|
||
|
"no-trailing-spaces": "error",
|
||
|
"semi": ["error", "always"],
|
||
|
"guard-for-in": "error"
|
||
|
},
|
||
|
"globals": {
|
||
|
"Mibew": true,
|
||
|
"MibewAPI": true,
|
||
|
"MibewAPIInteraction": true,
|
||
|
"MibewAPIChatInteraction": true,
|
||
|
"MibewAPIUsersInteraction": true,
|
||
|
"MibewAPIExecutionContext": true,
|
||
|
"Handlebars": true,
|
||
|
"_": true,
|
||
|
"Backbone": true,
|
||
|
"jQuery": true,
|
||
|
"vex": true,
|
||
|
"validator": true
|
||
|
},
|
||
|
"env":{
|
||
|
"browser": true
|
||
|
}
|
||
|
}
|