Skip to content

Commit

Permalink
Merge pull request #16 from hackmdio/feature/sc-2187-v1-api-client-re…
Browse files Browse the repository at this point in the history
…factor

v1 open api refactor
  • Loading branch information
Yukaii authored Feb 24, 2022
2 parents 412a754 + 9f464a4 commit 40638b3
Show file tree
Hide file tree
Showing 7 changed files with 2,788 additions and 490 deletions.
23 changes: 23 additions & 0 deletions nodejs/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
const path = require('path')

module.exports = {
"parser": "@typescript-eslint/parser",
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"no-trailing-spaces": ["warn", { "skipBlankLines": false }],
"semi": ["warn", "never"],
"@typescript-eslint/no-non-null-assertion": "off",
"keyword-spacing": ["warn", {"before": true, "after": true}],
"space-infix-ops": "warn",
"space-before-function-paren": "warn",
"eol-last": ["error", "always"]
},
"parserOptions": {
"project": [
path.resolve(__dirname, "tsconfig.json")
]
}
}
Loading

0 comments on commit 40638b3

Please sign in to comment.