Skip to content

Commit ece2567

Browse files
committed
fix(integration_tests): restore original linting setup
1 parent cfb9611 commit ece2567

File tree

7 files changed

+222
-137
lines changed

7 files changed

+222
-137
lines changed

.eslintrc.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module.exports = {
33
es6: true,
44
node: true,
55
},
6+
ignorePatterns: ["integration_test/**/*"],
67
extends: [
78
"eslint:recommended",
89
"plugin:@typescript-eslint/recommended",
@@ -28,9 +29,6 @@ module.exports = {
2829
overrides: [
2930
{
3031
files: ["*.ts"],
31-
parserOptions: {
32-
project: "tsconfig.json",
33-
},
3432
rules: {
3533
"jsdoc/require-param-type": "off",
3634
"jsdoc/require-returns-type": "off",
@@ -65,6 +63,9 @@ module.exports = {
6563
},
6664
],
6765
globals: {},
66+
parserOptions: {
67+
project: "tsconfig.json",
68+
},
6869
plugins: ["prettier", "@typescript-eslint", "jsdoc"],
6970
parser: "@typescript-eslint/parser",
7071
};

0 commit comments

Comments
 (0)