[READ-ONLY] Mirror of https://github.com/probablykasper/yt-email-notifier. macOS menubar app for YouTube upload notification emails
email menubar notifications tray youtube
0

Configure Feed

Select the types of activity you want to include in your feed.

Added eslint

Kasper (Aug 18, 2020, 1:12 PM +0200) 6755bf9d f8f1999d

+29
+28
.eslintrc.js
··· 1 + module.exports = { 2 + 'env': { 3 + 'es2020': true, 4 + 'node': true 5 + }, 6 + 'extends': 'eslint:recommended', 7 + 'parserOptions': { 8 + 'ecmaVersion': 11 9 + }, 10 + 'rules': { 11 + 'indent': [ 12 + 'error', 13 + 2 14 + ], 15 + 'linebreak-style': [ 16 + 'error', 17 + 'unix' 18 + ], 19 + 'quotes': [ 20 + 'error', 21 + 'single' 22 + ], 23 + 'semi': [ 24 + 'error', 25 + 'never' 26 + ] 27 + } 28 + }
+1
package.json
··· 18 18 }, 19 19 "homepage": "https://github.com/probablykasper/youtube-email-notifier#readme", 20 20 "dependencies": { 21 + "eslint": "^7.7.0", 21 22 "get-port": "^5.1.1", 22 23 "open": "^7.1.0", 23 24 "systray": "^1.0.5"