diff options
| author | Zephyrrus <[email protected]> | 2020-07-07 02:50:03 +0300 |
|---|---|---|
| committer | Zephyrrus <[email protected]> | 2020-07-07 02:50:03 +0300 |
| commit | 5d61b4d000a114857e4519be25c5834f510d450f (patch) | |
| tree | 022c0057c6a634a84f51dac4dd9a404736d93bf7 /package.json | |
| parent | feat: try fixing THE SHITTY WATERFALL (diff) | |
| download | host.fuwn.me-5d61b4d000a114857e4519be25c5834f510d450f.tar.xz host.fuwn.me-5d61b4d000a114857e4519be25c5834f510d450f.zip | |
feat: refactor waterfall to be more efficient
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/package.json b/package.json index a275c1d..a179669 100644 --- a/package.json +++ b/package.json @@ -56,6 +56,7 @@ "imagesloaded": "^4.1.4", "jsonwebtoken": "^8.5.0", "knex": "^0.16.3", + "masonry-layout": "^4.2.2", "moment": "^2.24.0", "multer": "^1.4.1", "mysql": "^2.16.0", @@ -117,7 +118,28 @@ ], "class-methods-use-this": "off", "no-param-reassign": "off", - "no-plusplus": "off", + "no-plusplus": [ + "error", + { + "allowForLoopAfterthoughts": true + } + ], + "no-underscore-dangle": [ + "error", + { + "allow": [ + "_id" + ] + } + ], + "import/extensions": [ + "error", + "always", + { + "js": "never", + "ts": "never" + } + ], "vue/attribute-hyphenation": 0, "vue/html-closing-bracket-newline": [ "error", |