Skip to content

Commit e8d6375

Browse files
committed
feat(project): source codes added.
1 parent 828cf11 commit e8d6375

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+11067
-2
lines changed

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

.eslintrc.js

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
module.exports = {
2+
root: true,
3+
parserOptions: {
4+
ecmaVersion: 12,
5+
sourceType: "module",
6+
},
7+
ignorePatterns: ["**/*.d.ts", "**/*.js"],
8+
parser: "@typescript-eslint/parser",
9+
plugins: ["@typescript-eslint", "prettier"],
10+
extends: [
11+
"plugin:prettier/recommended",
12+
"eslint:recommended",
13+
"plugin:@typescript-eslint/eslint-recommended",
14+
"plugin:@typescript-eslint/recommended",
15+
"prettier",
16+
],
17+
env: {
18+
browser: true,
19+
es2021: true,
20+
node: true,
21+
},
22+
rules: {
23+
"@typescript-eslint/no-explicit-any": "off",
24+
"@typescript-eslint/no-unused-vars": "error",
25+
"@typescript-eslint/explicit-function-return-type": "off",
26+
"@typescript-eslint/no-namespace": "off",
27+
"no-console": "error",
28+
quotes: ["error", "double"],
29+
"prettier/prettier": [
30+
"off",
31+
{
32+
endOfLine: "auto",
33+
},
34+
],
35+
},
36+
};

0 commit comments

Comments
 (0)