[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.

yt-email-notifier / .eslintrc.js
462 B 30 lines
1module.exports = { 2 'env': { 3 'es2020': true, 4 'node': true, 5 'browser': true, 6 }, 7 'extends': 'eslint:recommended', 8 'parserOptions': { 9 'ecmaVersion': 11, 10 }, 11 'rules': { 12 'comma-dangle': ['error', 'always-multiline'], 13 'indent': [ 14 'error', 15 2, 16 ], 17 'linebreak-style': [ 18 'error', 19 'unix', 20 ], 21 'quotes': [ 22 'error', 23 'single', 24 ], 25 'semi': [ 26 'error', 27 'never', 28 ], 29 }, 30}