Skip to content

Commit

Permalink
Merge pull request #875 from Sweetdevil144/dev-test
Browse files Browse the repository at this point in the history
fix #856 : Linter added for Code Cleanup
  • Loading branch information
aaronreed708 authored May 22, 2024
2 parents f491b74 + 8f4332e commit bcbefda
Show file tree
Hide file tree
Showing 3 changed files with 2,372 additions and 46 deletions.
28 changes: 28 additions & 0 deletions code/.eslintrc.json
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/"]
}

Loading

0 comments on commit bcbefda

Please sign in to comment.