This commit is contained in:
Hiiragi
2024-10-24 21:08:49 +08:00
commit 63329f0df5
35 changed files with 512 additions and 0 deletions

20
code-linter.json5 Normal file
View File

@ -0,0 +1,20 @@
{
"files": [
"**/*.ets"
],
"ignore": [
"**/src/ohosTest/**/*",
"**/src/test/**/*",
"**/src/mock/**/*",
"**/node_modules/**/*",
"**/oh_modules/**/*",
"**/build/**/*",
"**/.preview/**/*"
],
"ruleSet": [
"plugin:@performance/recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
}
}