tangled mirror of catsky-馃惐 Soothing soft social-app fork with all the niche toggles! (Unofficial); for issues and PRs please put them on github:NekoDrone/catsky-social
at main 575 B view raw
1module.exports = { 2 root: true, 3 parser: '@typescript-eslint/parser', 4 plugins: ['@typescript-eslint', 'simple-import-sort'], 5 extends: [ 6 'eslint:recommended', 7 'preact', 8 'plugin:@typescript-eslint/recommended', 9 'plugin:@typescript-eslint/recommended-requiring-type-checking', 10 ], 11 rules: { 12 'simple-import-sort/imports': 'warn', 13 'simple-import-sort/exports': 'warn', 14 'no-else-return': 'off', 15 }, 16 parserOptions: { 17 sourceType: 'module', 18 ecmaVersion: 'latest', 19 project: ['./tsconfig.json'], 20 tsconfigRootDir: __dirname, 21 }, 22}