Skip to content

Commit

Permalink
Issue-183 Initial commit for tslint to eslint work
Browse files Browse the repository at this point in the history
  • Loading branch information
Kunal Jaiswal committed Jun 30, 2021
1 parent 023ae4f commit 6393680
Show file tree
Hide file tree
Showing 52 changed files with 309,996 additions and 119,800 deletions.
40 changes: 40 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"env": {
"browser": true,
"es2021": true,
"jest": true,
"node": true
},
"extends": [
"eslint:recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/ban-ts-comment": "off",
"no-unused-vars": "off",
"no-dupe-class-members": "off",
"no-case-declarations": "off",
"no-prototype-builtins": "off",
"prefer-const": "off",
"no-unsafe-finally": "off",
"no-useless-escape": "off",
"no-undef": "off",
"no-redeclare": "off",
"no-sparse-arrays": "off",
"no-constant-condition": "off",
"no-fallthrough": "off",
"no-extra-boolean-cast": "off",
"no-extra-semi": "off",
"no-unreachable": "off"
}
}
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"recommendations": ["Orta.vscode-jest", "ms-vscode.vscode-typescript-tslint-plugin"]
"recommendations": ["Orta.vscode-jest", "dbaeumer.vscode-eslint", "rvest.vs-code-prettier-eslint"]
}
19 changes: 19 additions & 0 deletions integration-tests/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"env": {
"browser": true,
"es2021": true,
"jest": true,
"node": true
},
"extends": [
"eslint:recommended",
"../../.eslintrc.json"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {
}
}
Loading

0 comments on commit 6393680

Please sign in to comment.