Skip to content
This repository has been archived by the owner on Jun 8, 2019. It is now read-only.

Commit

Permalink
♻️ Рефакторинг, форматирование, включение Husky, доработка скриптов
Browse files Browse the repository at this point in the history
* Дополнительно отформатированы примеры конфигов, сконвертированы табы в пробелы
  • Loading branch information
TemaSM committed Apr 10, 2019
1 parent c13c0df commit 8e58d9a
Show file tree
Hide file tree
Showing 10 changed files with 1,612 additions and 1,623 deletions.
13 changes: 9 additions & 4 deletions .eslintrc.js
Expand Up @@ -7,12 +7,17 @@ module.exports = {
'extends': 'standard',
'globals': {
'Atomics': 'readonly',
'SharedArrayBuffer': 'readonly'
'SharedArrayBuffer': 'readonly',
},
'parserOptions': {
'ecmaVersion': 2018
'ecmaVersion': 2018,
},
'rules': {
'one-var': ['error', 'always'],
}
'one-var': ['off', 'never'],
'camelcase': ['off'],
'comma-dangle': ['error', 'always-multiline'],
'no-return-await': ['warn'],
'no-unused-vars': ['warn'],
'brace-style': [0, '1tbs', { 'allowSingleLine': true }],
},
}
1 change: 1 addition & 0 deletions .gitignore
@@ -1,6 +1,7 @@
## CUSTOM ##

*config.json
*.txt
.htpasswd

!*.keep
Expand Down
44 changes: 23 additions & 21 deletions botconfig.example.json
@@ -1,23 +1,25 @@
{
"flog": false,
"offColors": false,
"autoBuy": false,
"autoBuyItems": ["cursor"],
"smartBuy": false,
"waitForBoost": true,
"numberOfTries": 3,
"limitCPS": 50000,
"autobeep": false,
"hidejunk": false,
"tforce": false,
"transferTo": false,
"transferCoins": 30000,
"transferPercent": 0,
"transferInterval": 3600,
"saveIFrameURL": true,
"authAppType": "android",
"checkUpdates": true,
"updatesInterval": 300,
"autoUpdate": true,
"updateOnce": false
"flog": false,
"offColors": false,
"autoBuy": false,
"autoBuyItems": [
"cursor"
],
"smartBuy": false,
"waitForBoost": true,
"numberOfTries": 3,
"limitCPS": 50000,
"autobeep": false,
"hidejunk": false,
"tforce": false,
"transferTo": false,
"transferCoins": 30000,
"transferPercent": 0,
"transferInterval": 3600,
"saveIFrameURL": true,
"authAppType": "android",
"checkUpdates": true,
"updatesInterval": 300,
"autoUpdate": true,
"updateOnce": false
}

0 comments on commit 8e58d9a

Please sign in to comment.