mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-11 01:20:08 -04:00
Update eslint.config.mjs
This commit is contained in:
parent
4788ff1e31
commit
784216a82d
1 changed files with 52 additions and 47 deletions
|
@ -1,47 +1,52 @@
|
||||||
import typescriptEslint from "@typescript-eslint/eslint-plugin";
|
import typescriptEslint from '@typescript-eslint/eslint-plugin'
|
||||||
import globals from "globals";
|
import globals from 'globals'
|
||||||
import tsParser from "@typescript-eslint/parser";
|
import tsParser from '@typescript-eslint/parser'
|
||||||
import path from "node:path";
|
import path from 'node:path'
|
||||||
import { fileURLToPath } from "node:url";
|
import { fileURLToPath } from 'node:url'
|
||||||
import js from "@eslint/js";
|
import js from '@eslint/js'
|
||||||
import { FlatCompat } from "@eslint/eslintrc";
|
import { FlatCompat } from '@eslint/eslintrc'
|
||||||
|
|
||||||
const __filename = fileURLToPath(import.meta.url);
|
const __filename = fileURLToPath(import.meta.url)
|
||||||
const __dirname = path.dirname(__filename);
|
const __dirname = path.dirname(__filename)
|
||||||
const compat = new FlatCompat({
|
const compat = new FlatCompat({
|
||||||
baseDirectory: __dirname,
|
baseDirectory: __dirname,
|
||||||
recommendedConfig: js.configs.recommended,
|
recommendedConfig: js.configs.recommended,
|
||||||
allConfig: js.configs.all
|
allConfig: js.configs.all
|
||||||
});
|
})
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
...compat.extends("eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"),
|
...compat.extends('eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'),
|
||||||
{
|
{
|
||||||
plugins: {
|
plugins: {
|
||||||
"@typescript-eslint": typescriptEslint,
|
'@typescript-eslint': typescriptEslint
|
||||||
},
|
},
|
||||||
|
|
||||||
languageOptions: {
|
languageOptions: {
|
||||||
globals: {
|
globals: {
|
||||||
...globals.node,
|
...globals.node,
|
||||||
...globals.jest,
|
...globals.jest
|
||||||
},
|
},
|
||||||
|
|
||||||
parser: tsParser,
|
parser: tsParser,
|
||||||
ecmaVersion: "latest",
|
ecmaVersion: 'latest',
|
||||||
sourceType: "module",
|
sourceType: 'module'
|
||||||
},
|
},
|
||||||
|
|
||||||
rules: {
|
rules: {
|
||||||
"@typescript-eslint/no-var-requires": "off",
|
'@typescript-eslint/no-require-imports': 'off',
|
||||||
"no-case-declarations": "off",
|
'@typescript-eslint/no-var-requires': 'off',
|
||||||
"linebreak-style": ["error", "windows"],
|
'no-case-declarations': 'off',
|
||||||
|
'linebreak-style': ['error', 'windows'],
|
||||||
quotes: ["error", "single", {
|
|
||||||
avoidEscape: true,
|
quotes: [
|
||||||
}],
|
'error',
|
||||||
|
'single',
|
||||||
semi: ["error", "never"],
|
{
|
||||||
},
|
avoidEscape: true
|
||||||
},
|
}
|
||||||
];
|
],
|
||||||
|
|
||||||
|
semi: ['error', 'never']
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue