3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 12:25:02 +00:00

chore: switch from tslint to eslint

This commit is contained in:
Dragory 2023-05-08 21:53:09 +03:00
parent 16fa19d3e9
commit 9b3d6f5d68
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1
5 changed files with 2147 additions and 181 deletions

9
dashboard/.eslintrc.js Normal file
View file

@ -0,0 +1,9 @@
module.exports = {
extends: ["../.eslintrc.js"],
rules: {
"@typescript-eslint/no-unused-vars": 0,
"no-self-assign": 0,
"no-empty": 0,
"@typescript-eslint/no-var-requires": 0,
},
};