Skip to content

Commit

Permalink
mend
Browse files Browse the repository at this point in the history
  • Loading branch information
dedpnd committed Apr 23, 2020
2 parents d9cf5fc + 6481f0b commit 73ad3b0
Show file tree
Hide file tree
Showing 8 changed files with 937 additions and 167 deletions.
22 changes: 18 additions & 4 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,15 +1,29 @@
{
"extends": ["eslint:recommended"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parser": "@typescript-eslint/parser",
"rules": {
"no-console": 0
"no-console": 0,
"@typescript-eslint/interface-name-prefix": ["error", { "prefixWithI": "always" }],
"@typescript-eslint/no-var-requires": ["off"],
"@typescript-eslint/explicit-function-return-type": ["off"],
"@typescript-eslint/no-use-before-define": ["off"]
},
"parserOptions": {
"ecmaVersion": 8
"project": "tsconfig.json",
"ecmaVersion": 8,
"tsconfigRootDir": "."
},
"plugins": ["@typescript-eslint"],
"env": {
"jquery": true,
"browser": true,
"node": true,
"es6": true
"es6": true,
"es2017": true
}
}
Loading

0 comments on commit 73ad3b0

Please sign in to comment.