Skip to content

Commit

Permalink
turn off typescript indent rule
Browse files Browse the repository at this point in the history
  • Loading branch information
static-analysis-valid committed Mar 10, 2021
1 parent 38c8575 commit d7a53a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions app/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,16 @@
"sourceType": "module" // Allows for the use of imports
},
"rules": {
"indent": [
"error",
"tab"
],

"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
],
"indent": "off",
"@typescript-eslint/indent": "off"
}
}
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "tslint -p . $(git diff --name-only --diff-filter=ACMRTUXB main | grep -E \"(.js$|.ts$|.tsx$)\")",
"lint": "eslint . --ext .ts",
"e2e": "ng e2e"
},
"private": true,
Expand Down

0 comments on commit d7a53a9

Please sign in to comment.