Skip to content

Commit bcaaab5

Browse files
authored
Merge pull request #330 from alvachien/fix/lib
Fix/lib
2 parents 07b36b9 + b5c14c1 commit bcaaab5

395 files changed

Lines changed: 12260 additions & 9266 deletions

File tree

Some content is hidden

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

.eslintrc.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@
3838
"style": "camelCase",
3939
"type": "attribute"
4040
}
41+
],
42+
"@typescript-eslint/no-unused-vars": [
43+
"error",
44+
{
45+
"argsIgnorePattern": "^_",
46+
"varsIgnorePattern": "^_"
47+
}
4148
]
4249
}
4350
},
@@ -50,6 +57,14 @@
5057
"plugin:prettier/recommended"
5158
],
5259
"rules": {}
60+
},
61+
{
62+
"files": [
63+
"*.spec.ts"
64+
],
65+
"rules": {
66+
"@typescript-eslint/no-explicit-any": "off"
67+
}
5368
}
5469
]
5570
}

.prettierrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"singleQuote": true,
3+
"endOfLine": "auto",
34
"overrides": [
45
{
56
"files": "*.html",

0 commit comments

Comments
 (0)