2021-06-26 22:02:00 +02:00
|
|
|
// SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2020-12-23 17:26:53 +01:00
|
|
|
module.exports = {
|
2021-03-03 04:27:14 +01:00
|
|
|
parser: "@typescript-eslint/parser",
|
2020-12-23 17:26:53 +01:00
|
|
|
|
|
|
|
parserOptions: {
|
2021-03-03 04:27:14 +01:00
|
|
|
ecmaVersion: 2020,
|
|
|
|
sourceType: "module",
|
2020-12-23 17:26:53 +01:00
|
|
|
},
|
|
|
|
|
2021-03-17 12:15:25 +01:00
|
|
|
env: {
|
|
|
|
browser: true,
|
|
|
|
},
|
|
|
|
|
|
|
|
extends: ["plugin:@typescript-eslint/recommended", "plugin:jest/recommended", "plugin:prettier/recommended"],
|
2020-12-23 17:26:53 +01:00
|
|
|
|
2021-03-17 12:15:25 +01:00
|
|
|
plugins: ["@typescript-eslint", "jest"],
|
|
|
|
|
|
|
|
rules: {
|
|
|
|
// Specify any specific ESLint rules.
|
|
|
|
},
|
2021-01-27 01:38:47 +01:00
|
|
|
|
2021-03-17 12:15:25 +01:00
|
|
|
overrides: [
|
|
|
|
{
|
2021-11-30 17:30:25 +01:00
|
|
|
files: ["./*.cjs", "./*.js"],
|
2021-03-17 12:15:25 +01:00
|
|
|
rules: {
|
|
|
|
"@typescript-eslint/no-var-requires": "off",
|
|
|
|
},
|
|
|
|
},
|
2022-02-13 18:34:03 +01:00
|
|
|
{
|
|
|
|
files: ["./spec/**/*"],
|
|
|
|
env: {
|
|
|
|
browser: false,
|
|
|
|
},
|
|
|
|
extends: ["plugin:jest/recommended"],
|
|
|
|
plugins: ["jest"],
|
|
|
|
},
|
2021-03-17 12:15:25 +01:00
|
|
|
],
|
2020-12-23 17:26:53 +01:00
|
|
|
};
|