/home/techb158/balavpn.abdallabala.com/node_modules/es-abstract
NameSizeModeActions
5/-0777rm
2015/-0777rm
2016/-0777rm
2017/-0777rm
2018/-0777rm
2019/-0777rm
2020/-0777rm
2021/-0777rm
2022/-0777rm
2023/-0777rm
2024/-0777rm
2025/-0777rm
helpers/-0777rm
operations/-0777rm
.editorconfig3120666editdlrm
.nycrc3120666editdlrm
CHANGELOG.md493270666editdlrm
es5.js20710666editdlrm
es6.js530666editdlrm
es7.js530666editdlrm
es2015.js70440666editdlrm
es2016.js74490666editdlrm
es2017.js78950666editdlrm
es2018.js85350666editdlrm
es2019.js87900666editdlrm
es2020.js100780666editdlrm
es2021.js109480666editdlrm
es2022.js117170666editdlrm
es2023.js124470666editdlrm
es2024.js137840666editdlrm
es2025.js148430666editdlrm
eslint.config.mjs26380666editdlrm
GetIntrinsic.js890666editdlrm
index.js8350666editdlrm
LICENSE10810666editdlrm
package.json51690666editdlrm
README.md19370666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/es-abstract/eslint.config.mjs (2638B)
import ljharb from '@ljharb/eslint-config/flat'; import ljharbNodeLatest from '@ljharb/eslint-config/flat/node/latest'; import ljharbTests from '@ljharb/eslint-config/flat/tests'; export default [ { ignores: [ '.nyc_output', ], }, ...ljharb, { languageOptions: { globals: { DataView: false, Float16Array: false, Float32Array: false, Float64Array: false, Int8Array: false, Int16Array: false, Int32Array: false, Intl: false, Uint8Array: false, Uint8ClampedArray: false, Uint16Array: false, Uint32Array: false, }, }, rules: { 'array-bracket-newline': 'off', complexity: 'off', eqeqeq: ['error', 'allow-null'], 'func-name-matching': 'off', 'id-length': ['error', { min: 1, max: 40 }], 'max-lines-per-function': 'warn', 'max-params': ['error', 5], 'max-statements': 'warn', 'max-statements-per-line': ['error', { max: 2 }], 'multiline-comment-style': 'off', 'new-cap': 'off', 'no-extra-parens': 'warn', 'no-implicit-coercion': ['error', { boolean: false, number: false, string: true, }], 'no-magic-numbers': 'off', 'sort-keys': 'off', }, }, { files: ['GetIntrinsic.js'], rules: { 'max-statements': 'off', }, }, { files: ['operations/*'], rules: { 'max-lines': 'off', }, }, ...ljharbNodeLatest .filter((c) => !c.files?.some((f) => typeof f === 'function' || f === '**/*.mjs')) .map((c) => ({ ...c, files: [ 'operations/deltas.js', 'operations/getOps.js', 'operations/spackle.js', 'operations/years.js', ], })), { files: [ 'operations/deltas.js', 'operations/getOps.js', 'operations/spackle.js', 'operations/years.js', ], rules: { complexity: 'off', 'func-style': 'off', 'max-lines-per-function': 'off', 'max-nested-callbacks': 'off', 'max-statements': 'off', 'no-magic-numbers': 'off', 'no-throw-literal': 'off', }, }, ...ljharbTests.map((c) => ({ ...c, files: ['test/**'], })), { files: ['test/**'], rules: { 'max-len': 'off', 'max-lines-per-function': 'off', 'no-implicit-coercion': 'off', 'no-invalid-this': 'warn', 'prefer-promise-reject-errors': 'off', }, }, { files: [ '*/Num*ToRawBytes.js', '*/RawBytesToNum*.js', 'helpers/bytesAs*.js', 'helpers/valueToFloat*.js', ], rules: { 'max-lines-per-function': 'off', 'max-statements': 'off', 'no-redeclare': 'warn', 'operator-linebreak': ['error', 'before', { overrides: { '=': 'none', }, }], }, }, { files: ['*/GetSubstitution.js'], rules: { 'max-depth': 'off', }, }, ];