decentralised sync engine
0
fork

Configure Feed

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

chore: linting

serenity ebac19d1 92381067

+18 -9
+16 -8
eslint.config.mts
··· 4 4 import { defineConfig } from "eslint/config"; 5 5 6 6 export default defineConfig([ 7 - { 8 - files: ["**/*.{js,mjs,cjs,ts,mts,cts}"], 9 - plugins: { js }, 10 - extends: ["js/recommended"], 11 - languageOptions: { globals: globals.browser }, 12 - }, 13 - tseslint.configs.strictTypeChecked, 14 - tseslint.configs.stylisticTypeChecked, 7 + { 8 + files: ["**/*.{js,mjs,cjs,ts,mts,cts}"], 9 + plugins: { js }, 10 + extends: ["js/recommended"], 11 + languageOptions: { globals: globals.browser }, 12 + }, 13 + tseslint.configs.strictTypeChecked, 14 + tseslint.configs.stylisticTypeChecked, 15 + { 16 + rules: { 17 + "@typescript-eslint/consistent-type-imports": "error", 18 + }, 19 + languageOptions: { 20 + parserOptions: { projectService: true, tsconfigRootDir: __dirname }, 21 + }, 22 + }, 15 23 ]);
+2 -1
package.json
··· 5 5 "main": "index.js", 6 6 "scripts": { 7 7 "test": "echo \"Error: no test specified\" && exit 1", 8 - "dev": "tsc && tsc-alias && node dist/index.js" 8 + "dev": "tsc && tsc-alias && node dist/index.js", 9 + "lint": "eslint src/" 9 10 }, 10 11 "keywords": [], 11 12 "author": "",