mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1{
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": "./bskyembed/tsconfig.json"
20 }
21}