Skip to content

Commit

Permalink
fix: error of eslint rules
Browse files Browse the repository at this point in the history
- comma-dangle
- semi
- no-async-promise-executor
  • Loading branch information
Chinlinlee committed Jan 27, 2022
1 parent 38ad62d commit 1624240
Show file tree
Hide file tree
Showing 70 changed files with 2,612 additions and 1,332 deletions.
19 changes: 19 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"parserOptions": {
"ecmaVersion": 2018
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"extends": ["eslint:recommended"],
"rules": {
"semi": ["error", "always"],
"comma-dangle": ["error", "never"],
"no-unused-vars": "off",
"no-console": 0 ,
"no-useless-escape": "off"
},
"ignorePatterns": ["public/**", "temp/**", "models/FHIR/fhir/**"]
}
Loading

0 comments on commit 1624240

Please sign in to comment.