Skip to content

Commit

Permalink
✅ eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
tal7aouy committed Feb 26, 2022
1 parent 2deb621 commit 45d17a2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": ["@typescript-eslint"],
"rules": {
"indent": ["error", "tab"],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "never"],
"comma-dangle": ["error", "always-multiline"]
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
}
}

0 comments on commit 45d17a2

Please sign in to comment.