mirror of
https://github.com/iptv-org/epg
synced 2026-05-07 18:07:05 -04:00
eslint move to flatconfig, remove run-script-os since unused
This commit is contained in:
@@ -1,57 +1,41 @@
|
|||||||
import typescriptEslint from '@typescript-eslint/eslint-plugin'
|
|
||||||
import stylistic from '@stylistic/eslint-plugin'
|
|
||||||
import globals from 'globals'
|
|
||||||
import tsParser from '@typescript-eslint/parser'
|
|
||||||
import path from 'node:path'
|
|
||||||
import { fileURLToPath } from 'node:url'
|
|
||||||
import js from '@eslint/js'
|
import js from '@eslint/js'
|
||||||
import { FlatCompat } from '@eslint/eslintrc'
|
import globals from 'globals'
|
||||||
|
import tseslint from 'typescript-eslint'
|
||||||
const __filename = fileURLToPath(import.meta.url)
|
import stylistic from '@stylistic/eslint-plugin'
|
||||||
const __dirname = path.dirname(__filename)
|
import prettier from 'eslint-config-prettier'
|
||||||
const compat = new FlatCompat({
|
|
||||||
baseDirectory: __dirname,
|
|
||||||
recommendedConfig: js.configs.recommended,
|
|
||||||
allConfig: js.configs.all
|
|
||||||
})
|
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
...compat.extends('eslint:recommended', 'plugin:@typescript-eslint/strict', 'plugin:@typescript-eslint/stylistic', 'prettier'),
|
|
||||||
{
|
{
|
||||||
plugins: {
|
ignores: ['tests/__data__/']
|
||||||
'@typescript-eslint': typescriptEslint,
|
},
|
||||||
'@stylistic': stylistic
|
|
||||||
},
|
|
||||||
|
|
||||||
|
js.configs.recommended,
|
||||||
|
...tseslint.configs.strict,
|
||||||
|
...tseslint.configs.stylistic,
|
||||||
|
prettier,
|
||||||
|
|
||||||
|
{
|
||||||
|
files: ['**/*.{js,mjs,cjs,ts}'],
|
||||||
languageOptions: {
|
languageOptions: {
|
||||||
|
parser: tseslint.parser,
|
||||||
|
ecmaVersion: 'latest',
|
||||||
|
sourceType: 'module',
|
||||||
globals: {
|
globals: {
|
||||||
...globals.node,
|
...globals.node,
|
||||||
...globals.jest
|
...globals.jest
|
||||||
},
|
}
|
||||||
|
},
|
||||||
parser: tsParser,
|
plugins: {
|
||||||
ecmaVersion: 'latest',
|
'@typescript-eslint': tseslint.plugin,
|
||||||
sourceType: 'module'
|
'@stylistic': stylistic
|
||||||
},
|
},
|
||||||
|
|
||||||
rules: {
|
rules: {
|
||||||
'@typescript-eslint/no-require-imports': 'off',
|
'@typescript-eslint/no-require-imports': 'off',
|
||||||
'@typescript-eslint/no-var-requires': 'off',
|
'@typescript-eslint/no-var-requires': 'off',
|
||||||
'no-case-declarations': 'off',
|
'no-case-declarations': 'off',
|
||||||
'@stylistic/linebreak-style': ['error', 'windows'],
|
'@stylistic/linebreak-style': ['error', 'windows'],
|
||||||
|
quotes: ['error', 'single', { avoidEscape: true }],
|
||||||
quotes: [
|
|
||||||
'error',
|
|
||||||
'single',
|
|
||||||
{
|
|
||||||
avoidEscape: true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
|
|
||||||
semi: ['error', 'never']
|
semi: ['error', 'never']
|
||||||
}
|
}
|
||||||
},
|
|
||||||
{
|
|
||||||
ignores: ['tests/__data__/']
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
52
package-lock.json
generated
52
package-lock.json
generated
@@ -34,8 +34,6 @@
|
|||||||
"@types/lodash.uniqby": "^4.7.9",
|
"@types/lodash.uniqby": "^4.7.9",
|
||||||
"@types/node": "^25.6.0",
|
"@types/node": "^25.6.0",
|
||||||
"@types/pako": "^2.0.4",
|
"@types/pako": "^2.0.4",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.58.2",
|
|
||||||
"@typescript-eslint/parser": "^8.58.2",
|
|
||||||
"axios": "^1.15.0",
|
"axios": "^1.15.0",
|
||||||
"chalk": "^5.6.2",
|
"chalk": "^5.6.2",
|
||||||
"cheerio": "^1.2.0",
|
"cheerio": "^1.2.0",
|
||||||
@@ -68,7 +66,6 @@
|
|||||||
"pako": "^2.1.0",
|
"pako": "^2.1.0",
|
||||||
"parse-duration": "^2.1.6",
|
"parse-duration": "^2.1.6",
|
||||||
"pm2": "^6.0.14",
|
"pm2": "^6.0.14",
|
||||||
"run-script-os": "^1.1.6",
|
|
||||||
"serve": "^14.2.6",
|
"serve": "^14.2.6",
|
||||||
"socks-proxy-agent": "^10.0.0",
|
"socks-proxy-agent": "^10.0.0",
|
||||||
"srcset": "^5.0.3",
|
"srcset": "^5.0.3",
|
||||||
@@ -77,6 +74,7 @@
|
|||||||
"tough-cookie": "^6.0.1",
|
"tough-cookie": "^6.0.1",
|
||||||
"tsx": "^4.21.0",
|
"tsx": "^4.21.0",
|
||||||
"typescript": "^6.0.3",
|
"typescript": "^6.0.3",
|
||||||
|
"typescript-eslint": "^8.58.2",
|
||||||
"uuid": "^13.0.0"
|
"uuid": "^13.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -10638,15 +10636,6 @@
|
|||||||
"node": ">=0.12.0"
|
"node": ">=0.12.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/run-script-os": {
|
|
||||||
"version": "1.1.6",
|
|
||||||
"resolved": "https://registry.npmjs.org/run-script-os/-/run-script-os-1.1.6.tgz",
|
|
||||||
"integrity": "sha512-ql6P2LzhBTTDfzKts+Qo4H94VUKpxKDFz6QxxwaUZN0mwvi7L3lpOI7BqPCq7lgDh3XLl0dpeXwfcVIitlrYrw==",
|
|
||||||
"bin": {
|
|
||||||
"run-os": "index.js",
|
|
||||||
"run-script-os": "index.js"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/run-series": {
|
"node_modules/run-series": {
|
||||||
"version": "1.1.9",
|
"version": "1.1.9",
|
||||||
"resolved": "https://registry.npmjs.org/run-series/-/run-series-1.1.9.tgz",
|
"resolved": "https://registry.npmjs.org/run-series/-/run-series-1.1.9.tgz",
|
||||||
@@ -11412,6 +11401,29 @@
|
|||||||
"node": ">=14.17"
|
"node": ">=14.17"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/typescript-eslint": {
|
||||||
|
"version": "8.58.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.58.2.tgz",
|
||||||
|
"integrity": "sha512-V8iSng9mRbdZjl54VJ9NKr6ZB+dW0J3TzRXRGcSbLIej9jV86ZRtlYeTKDR/QLxXykocJ5icNzbsl2+5TzIvcQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@typescript-eslint/eslint-plugin": "8.58.2",
|
||||||
|
"@typescript-eslint/parser": "8.58.2",
|
||||||
|
"@typescript-eslint/typescript-estree": "8.58.2",
|
||||||
|
"@typescript-eslint/utils": "8.58.2"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/typescript-eslint"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
|
||||||
|
"typescript": ">=4.8.4 <6.1.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/undici": {
|
"node_modules/undici": {
|
||||||
"version": "7.24.7",
|
"version": "7.24.7",
|
||||||
"resolved": "https://registry.npmjs.org/undici/-/undici-7.24.7.tgz",
|
"resolved": "https://registry.npmjs.org/undici/-/undici-7.24.7.tgz",
|
||||||
@@ -18766,11 +18778,6 @@
|
|||||||
"resolved": "https://registry.npmjs.org/run-async/-/run-async-4.0.6.tgz",
|
"resolved": "https://registry.npmjs.org/run-async/-/run-async-4.0.6.tgz",
|
||||||
"integrity": "sha512-IoDlSLTs3Yq593mb3ZoKWKXMNu3UpObxhgA/Xuid5p4bbfi2jdY1Hj0m1K+0/tEuQTxIGMhQDqGjKb7RuxGpAQ=="
|
"integrity": "sha512-IoDlSLTs3Yq593mb3ZoKWKXMNu3UpObxhgA/Xuid5p4bbfi2jdY1Hj0m1K+0/tEuQTxIGMhQDqGjKb7RuxGpAQ=="
|
||||||
},
|
},
|
||||||
"run-script-os": {
|
|
||||||
"version": "1.1.6",
|
|
||||||
"resolved": "https://registry.npmjs.org/run-script-os/-/run-script-os-1.1.6.tgz",
|
|
||||||
"integrity": "sha512-ql6P2LzhBTTDfzKts+Qo4H94VUKpxKDFz6QxxwaUZN0mwvi7L3lpOI7BqPCq7lgDh3XLl0dpeXwfcVIitlrYrw=="
|
|
||||||
},
|
|
||||||
"run-series": {
|
"run-series": {
|
||||||
"version": "1.1.9",
|
"version": "1.1.9",
|
||||||
"resolved": "https://registry.npmjs.org/run-series/-/run-series-1.1.9.tgz",
|
"resolved": "https://registry.npmjs.org/run-series/-/run-series-1.1.9.tgz",
|
||||||
@@ -19257,6 +19264,17 @@
|
|||||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-6.0.3.tgz",
|
||||||
"integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw=="
|
"integrity": "sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw=="
|
||||||
},
|
},
|
||||||
|
"typescript-eslint": {
|
||||||
|
"version": "8.58.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.58.2.tgz",
|
||||||
|
"integrity": "sha512-V8iSng9mRbdZjl54VJ9NKr6ZB+dW0J3TzRXRGcSbLIej9jV86ZRtlYeTKDR/QLxXykocJ5icNzbsl2+5TzIvcQ==",
|
||||||
|
"requires": {
|
||||||
|
"@typescript-eslint/eslint-plugin": "8.58.2",
|
||||||
|
"@typescript-eslint/parser": "8.58.2",
|
||||||
|
"@typescript-eslint/typescript-estree": "8.58.2",
|
||||||
|
"@typescript-eslint/utils": "8.58.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
"undici": {
|
"undici": {
|
||||||
"version": "7.24.7",
|
"version": "7.24.7",
|
||||||
"resolved": "https://registry.npmjs.org/undici/-/undici-7.24.7.tgz",
|
"resolved": "https://registry.npmjs.org/undici/-/undici-7.24.7.tgz",
|
||||||
|
|||||||
@@ -62,8 +62,6 @@
|
|||||||
"@types/lodash.uniqby": "^4.7.9",
|
"@types/lodash.uniqby": "^4.7.9",
|
||||||
"@types/node": "^25.6.0",
|
"@types/node": "^25.6.0",
|
||||||
"@types/pako": "^2.0.4",
|
"@types/pako": "^2.0.4",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.58.2",
|
|
||||||
"@typescript-eslint/parser": "^8.58.2",
|
|
||||||
"axios": "^1.15.0",
|
"axios": "^1.15.0",
|
||||||
"chalk": "^5.6.2",
|
"chalk": "^5.6.2",
|
||||||
"cheerio": "^1.2.0",
|
"cheerio": "^1.2.0",
|
||||||
@@ -96,7 +94,6 @@
|
|||||||
"pako": "^2.1.0",
|
"pako": "^2.1.0",
|
||||||
"parse-duration": "^2.1.6",
|
"parse-duration": "^2.1.6",
|
||||||
"pm2": "^6.0.14",
|
"pm2": "^6.0.14",
|
||||||
"run-script-os": "^1.1.6",
|
|
||||||
"serve": "^14.2.6",
|
"serve": "^14.2.6",
|
||||||
"socks-proxy-agent": "^10.0.0",
|
"socks-proxy-agent": "^10.0.0",
|
||||||
"srcset": "^5.0.3",
|
"srcset": "^5.0.3",
|
||||||
@@ -105,6 +102,7 @@
|
|||||||
"tough-cookie": "^6.0.1",
|
"tough-cookie": "^6.0.1",
|
||||||
"tsx": "^4.21.0",
|
"tsx": "^4.21.0",
|
||||||
"typescript": "^6.0.3",
|
"typescript": "^6.0.3",
|
||||||
|
"typescript-eslint": "^8.58.2",
|
||||||
"uuid": "^13.0.0"
|
"uuid": "^13.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user