Skip to content

Commit

Permalink
Merge pull request #62 from iam-abin/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
iam-abin authored Oct 28, 2024
2 parents 3479092 + c40bb63 commit 5ef5fb5
Show file tree
Hide file tree
Showing 522 changed files with 17,230 additions and 8,828 deletions.
10 changes: 10 additions & 0 deletions admin/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"semi": true,
"bracketSpacing": true,
"singleQuote": true,
"printWidth": 110,
"tabWidth": 4,
"trailingComma": "all",
"arrowParens": "always",
"endOfLine": "auto"
}
12 changes: 12 additions & 0 deletions admin/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";


export default [
{files: ["**/*.{js,mjs,cjs,ts}"]},
{files: ["**/*.js"], languageOptions: {sourceType: "script"}},
{languageOptions: { globals: globals.node }},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
];
Loading

0 comments on commit 5ef5fb5

Please sign in to comment.