Skip to content

Commit

Permalink
Merge f38f755 into 4716229
Browse files Browse the repository at this point in the history
  • Loading branch information
epoberezkin committed Sep 13, 2020
2 parents 4716229 + f38f755 commit 6cf4c1e
Show file tree
Hide file tree
Showing 64 changed files with 1,013 additions and 1,331 deletions.
29 changes: 29 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
const jsConfig = require("@ajv-validator/config/.eslintrc_js")
const tsConfig = require("@ajv-validator/config/.eslintrc")

module.exports = {
env: {
es6: true,
node: true,
},
overrides: [
jsConfig,
{
...tsConfig,
files: ["*.ts"],
rules: {
...tsConfig.rules,
complexity: ["error", 17],
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-implied-eval": "off",
"@typescript-eslint/no-invalid-this": "off",
"@typescript-eslint/no-unnecessary-condition": "warn",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/restrict-template-expressions": "off",
},
},
],
}
70 changes: 0 additions & 70 deletions .eslintrc.yml

This file was deleted.

Loading

0 comments on commit 6cf4c1e

Please sign in to comment.