forked from olivierwilkinson/prisma-soft-delete-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
28 lines (28 loc) · 801 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"parser": "@typescript-eslint/parser",
"extends": [
"./node_modules/kcd-scripts/eslint.js",
"plugin:import/typescript"
],
"plugins": ["@typescript-eslint"],
"rules": {
"babel/new-cap": "off",
"func-names": "off",
"babel/no-unused-expressions": "off",
"prefer-arrow-callback": "off",
"testing-library/no-await-sync-query": "off",
"testing-library/no-dom-import": "off",
"testing-library/prefer-screen-queries": "off",
"no-undef": "off",
"no-use-before-define": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ "varsIgnorePattern": "^_", "argsIgnorePattern": "^_" }
],
"max-lines-per-function": "off",
"consistent-return": "off",
"jest/no-if": "off",
"one-var": "off"
}
}