mirror of
https://github.com/selfxyz/self.git
synced 2026-04-05 03:00:53 -04:00
* feat: qrcode wrapper in angular * chore: refactor * feat: working qrcode * fix: websockets * fix: lottie animations * chore: add readme * ci: angular --------- Co-authored-by: vishal <vishalkoolkarni0045@gmail.com>
28 lines
806 B
JSON
28 lines
806 B
JSON
{
|
|
"root": true,
|
|
"ignorePatterns": ["projects/**/*", "dist/**/*"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"project": ["tsconfig.json"],
|
|
"createDefaultProgram": true
|
|
},
|
|
"plugins": ["@typescript-eslint"],
|
|
"rules": {
|
|
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
"@typescript-eslint/no-explicit-any": "warn",
|
|
"@typescript-eslint/no-inferrable-types": "off"
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.html"],
|
|
"extends": ["plugin:@angular-eslint/template/recommended"],
|
|
"rules": {}
|
|
}
|
|
]
|
|
}
|