-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #875 from Sweetdevil144/dev-test
fix #856 : Linter added for Code Cleanup
- Loading branch information
Showing
3 changed files
with
2,372 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"ecmaVersion": 2020, | ||
"sourceType": "module", | ||
"project": "./tsconfig.json" | ||
}, | ||
"plugins": [ | ||
"@typescript-eslint", | ||
"header" | ||
], | ||
"extends": [ | ||
"plugin:@typescript-eslint/recommended" | ||
], | ||
"rules": { | ||
"header/header": [2, "block", [ | ||
"*", | ||
" * Copyright (c) 2023 Discover Financial Services", | ||
" * Licensed under Apache-2.0 License. See License.txt in the project root for license information", | ||
" " | ||
]], | ||
"@typescript-eslint/no-unused-vars": ["error", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false }], | ||
"no-unused-vars": "off", | ||
"@typescript-eslint/no-unused-vars-experimental": "error" | ||
}, | ||
"ignorePatterns": ["dist/", "node_modules/", "build/"] | ||
} | ||
|
Oops, something went wrong.