One Calendar is a privacy-first calendar web app built with Next.js. It has modern security features, including e2ee, password-protected sharing, and self-destructing share links ๐Ÿ“… calendar.xyehr.cn
5
fork

Configure Feed

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

feat: add eslint config

authored by

Evan Huang and committed by
GitHub
dd713a1b e1d88ce9

+15
+15
eslint.config.mjs
··· 1 + import js from '@eslint/js' 2 + import next from 'eslint-config-next' 3 + import tseslint from 'typescript-eslint' 4 + 5 + export default [ 6 + js.configs.recommended, 7 + ...tseslint.configs.recommended, 8 + ...next(), 9 + { 10 + rules: { 11 + "no-console": "warn", 12 + "prefer-const": "error" 13 + } 14 + } 15 + ]