mirror of
https://github.com/ivabus/gui
synced 2025-04-23 14:07:14 +03:00
22 lines
509 B
JavaScript
22 lines
509 B
JavaScript
module.exports = {
|
|
root: true,
|
|
globals: {
|
|
NodeJS: true
|
|
},
|
|
parser: "@typescript-eslint/parser",
|
|
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
|
|
plugins: ["@typescript-eslint"],
|
|
ignorePatterns: ["*.cjs"],
|
|
parserOptions: {
|
|
sourceType: "module",
|
|
ecmaVersion: 2020
|
|
},
|
|
env: {
|
|
browser: true,
|
|
es2017: true,
|
|
node: true
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/ban-ts-comment": ["error", { "ts-ignore": "allow-with-description" }]
|
|
}
|
|
};
|