Add components
This commit is contained in:
32
slider/node_modules/eslint/conf/default-cli-options.js
generated
vendored
Normal file
32
slider/node_modules/eslint/conf/default-cli-options.js
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
/**
|
||||
* @fileoverview Default CLIEngineOptions.
|
||||
* @author Ian VanSchooten
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
module.exports = {
|
||||
configFile: null,
|
||||
baseConfig: false,
|
||||
rulePaths: [],
|
||||
useEslintrc: true,
|
||||
envs: [],
|
||||
globals: [],
|
||||
extensions: null,
|
||||
ignore: true,
|
||||
ignorePath: void 0,
|
||||
cache: false,
|
||||
|
||||
/*
|
||||
* in order to honor the cacheFile option if specified
|
||||
* this option should not have a default value otherwise
|
||||
* it will always be used
|
||||
*/
|
||||
cacheLocation: "",
|
||||
cacheFile: ".eslintcache",
|
||||
cacheStrategy: "metadata",
|
||||
fix: false,
|
||||
allowInlineConfig: true,
|
||||
reportUnusedDisableDirectives: void 0,
|
||||
globInputPaths: true,
|
||||
};
|
16
slider/node_modules/eslint/conf/ecma-version.js
generated
vendored
Normal file
16
slider/node_modules/eslint/conf/ecma-version.js
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* @fileoverview Configuration related to ECMAScript versions
|
||||
* @author Milos Djermanovic
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
/**
|
||||
* The latest ECMAScript version supported by ESLint.
|
||||
* @type {number} year-based ECMAScript version
|
||||
*/
|
||||
const LATEST_ECMA_VERSION = 2026;
|
||||
|
||||
module.exports = {
|
||||
LATEST_ECMA_VERSION,
|
||||
};
|
169
slider/node_modules/eslint/conf/globals.js
generated
vendored
Normal file
169
slider/node_modules/eslint/conf/globals.js
generated
vendored
Normal file
@@ -0,0 +1,169 @@
|
||||
/**
|
||||
* @fileoverview Globals for ecmaVersion/sourceType
|
||||
* @author Nicholas C. Zakas
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Globals
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
const commonjs = {
|
||||
exports: true,
|
||||
global: false,
|
||||
module: false,
|
||||
require: false,
|
||||
};
|
||||
|
||||
const es3 = {
|
||||
Array: false,
|
||||
Boolean: false,
|
||||
constructor: false,
|
||||
Date: false,
|
||||
decodeURI: false,
|
||||
decodeURIComponent: false,
|
||||
encodeURI: false,
|
||||
encodeURIComponent: false,
|
||||
Error: false,
|
||||
escape: false,
|
||||
eval: false,
|
||||
EvalError: false,
|
||||
Function: false,
|
||||
hasOwnProperty: false,
|
||||
Infinity: false,
|
||||
isFinite: false,
|
||||
isNaN: false,
|
||||
isPrototypeOf: false,
|
||||
Math: false,
|
||||
NaN: false,
|
||||
Number: false,
|
||||
Object: false,
|
||||
parseFloat: false,
|
||||
parseInt: false,
|
||||
propertyIsEnumerable: false,
|
||||
RangeError: false,
|
||||
ReferenceError: false,
|
||||
RegExp: false,
|
||||
String: false,
|
||||
SyntaxError: false,
|
||||
toLocaleString: false,
|
||||
toString: false,
|
||||
TypeError: false,
|
||||
undefined: false,
|
||||
unescape: false,
|
||||
URIError: false,
|
||||
valueOf: false,
|
||||
};
|
||||
|
||||
const es5 = {
|
||||
...es3,
|
||||
JSON: false,
|
||||
};
|
||||
|
||||
const es2015 = {
|
||||
...es5,
|
||||
ArrayBuffer: false,
|
||||
DataView: false,
|
||||
Float32Array: false,
|
||||
Float64Array: false,
|
||||
Int16Array: false,
|
||||
Int32Array: false,
|
||||
Int8Array: false,
|
||||
Intl: false,
|
||||
Map: false,
|
||||
Promise: false,
|
||||
Proxy: false,
|
||||
Reflect: false,
|
||||
Set: false,
|
||||
Symbol: false,
|
||||
Uint16Array: false,
|
||||
Uint32Array: false,
|
||||
Uint8Array: false,
|
||||
Uint8ClampedArray: false,
|
||||
WeakMap: false,
|
||||
WeakSet: false,
|
||||
};
|
||||
|
||||
// no new globals in ES2016
|
||||
const es2016 = {
|
||||
...es2015,
|
||||
};
|
||||
|
||||
const es2017 = {
|
||||
...es2016,
|
||||
Atomics: false,
|
||||
SharedArrayBuffer: false,
|
||||
};
|
||||
|
||||
// no new globals in ES2018
|
||||
const es2018 = {
|
||||
...es2017,
|
||||
};
|
||||
|
||||
// no new globals in ES2019
|
||||
const es2019 = {
|
||||
...es2018,
|
||||
};
|
||||
|
||||
const es2020 = {
|
||||
...es2019,
|
||||
BigInt: false,
|
||||
BigInt64Array: false,
|
||||
BigUint64Array: false,
|
||||
globalThis: false,
|
||||
};
|
||||
|
||||
const es2021 = {
|
||||
...es2020,
|
||||
AggregateError: false,
|
||||
FinalizationRegistry: false,
|
||||
WeakRef: false,
|
||||
};
|
||||
|
||||
const es2022 = {
|
||||
...es2021,
|
||||
};
|
||||
|
||||
const es2023 = {
|
||||
...es2022,
|
||||
};
|
||||
|
||||
const es2024 = {
|
||||
...es2023,
|
||||
};
|
||||
|
||||
const es2025 = {
|
||||
...es2024,
|
||||
Float16Array: false,
|
||||
Iterator: false,
|
||||
};
|
||||
|
||||
const es2026 = {
|
||||
...es2025,
|
||||
AsyncDisposableStack: false,
|
||||
DisposableStack: false,
|
||||
SuppressedError: false,
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Exports
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
module.exports = {
|
||||
commonjs,
|
||||
es3,
|
||||
es5,
|
||||
es2015,
|
||||
es2016,
|
||||
es2017,
|
||||
es2018,
|
||||
es2019,
|
||||
es2020,
|
||||
es2021,
|
||||
es2022,
|
||||
es2023,
|
||||
es2024,
|
||||
es2025,
|
||||
es2026,
|
||||
};
|
26
slider/node_modules/eslint/conf/replacements.json
generated
vendored
Normal file
26
slider/node_modules/eslint/conf/replacements.json
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"rules": {
|
||||
"generator-star": ["generator-star-spacing"],
|
||||
"global-strict": ["strict"],
|
||||
"no-arrow-condition": ["no-confusing-arrow", "no-constant-condition"],
|
||||
"no-comma-dangle": ["comma-dangle"],
|
||||
"no-empty-class": ["no-empty-character-class"],
|
||||
"no-empty-label": ["no-labels"],
|
||||
"no-extra-strict": ["strict"],
|
||||
"no-reserved-keys": ["quote-props"],
|
||||
"no-space-before-semi": ["semi-spacing"],
|
||||
"no-wrap-func": ["no-extra-parens"],
|
||||
"space-after-function-name": ["space-before-function-paren"],
|
||||
"space-after-keywords": ["keyword-spacing"],
|
||||
"space-before-function-parentheses": ["space-before-function-paren"],
|
||||
"space-before-keywords": ["keyword-spacing"],
|
||||
"space-in-brackets": [
|
||||
"object-curly-spacing",
|
||||
"array-bracket-spacing",
|
||||
"computed-property-spacing"
|
||||
],
|
||||
"space-return-throw-case": ["keyword-spacing"],
|
||||
"space-unary-word-ops": ["space-unary-ops"],
|
||||
"spaced-line-comment": ["spaced-comment"]
|
||||
}
|
||||
}
|
91
slider/node_modules/eslint/conf/rule-type-list.json
generated
vendored
Normal file
91
slider/node_modules/eslint/conf/rule-type-list.json
generated
vendored
Normal file
@@ -0,0 +1,91 @@
|
||||
{
|
||||
"types": {
|
||||
"problem": [],
|
||||
"suggestion": [],
|
||||
"layout": []
|
||||
},
|
||||
"deprecated": [],
|
||||
"removed": [
|
||||
{
|
||||
"removed": "generator-star",
|
||||
"replacedBy": [{ "rule": { "name": "generator-star-spacing" } }]
|
||||
},
|
||||
{
|
||||
"removed": "global-strict",
|
||||
"replacedBy": [{ "rule": { "name": "strict" } }]
|
||||
},
|
||||
{
|
||||
"removed": "no-arrow-condition",
|
||||
"replacedBy": [
|
||||
{ "rule": { "name": "no-confusing-arrow" } },
|
||||
{ "rule": { "name": "no-constant-condition" } }
|
||||
]
|
||||
},
|
||||
{
|
||||
"removed": "no-comma-dangle",
|
||||
"replacedBy": [{ "rule": { "name": "comma-dangle" } }]
|
||||
},
|
||||
{
|
||||
"removed": "no-empty-class",
|
||||
"replacedBy": [{ "rule": { "name": "no-empty-character-class" } }]
|
||||
},
|
||||
{
|
||||
"removed": "no-empty-label",
|
||||
"replacedBy": [{ "rule": { "name": "no-labels" } }]
|
||||
},
|
||||
{
|
||||
"removed": "no-extra-strict",
|
||||
"replacedBy": [{ "rule": { "name": "strict" } }]
|
||||
},
|
||||
{
|
||||
"removed": "no-reserved-keys",
|
||||
"replacedBy": [{ "rule": { "name": "quote-props" } }]
|
||||
},
|
||||
{
|
||||
"removed": "no-space-before-semi",
|
||||
"replacedBy": [{ "rule": { "name": "semi-spacing" } }]
|
||||
},
|
||||
{
|
||||
"removed": "no-wrap-func",
|
||||
"replacedBy": [{ "rule": { "name": "no-extra-parens" } }]
|
||||
},
|
||||
{
|
||||
"removed": "space-after-function-name",
|
||||
"replacedBy": [{ "rule": { "name": "space-before-function-paren" } }]
|
||||
},
|
||||
{
|
||||
"removed": "space-after-keywords",
|
||||
"replacedBy": [{ "rule": { "name": "keyword-spacing" } }]
|
||||
},
|
||||
{
|
||||
"removed": "space-before-function-parentheses",
|
||||
"replacedBy": [{ "rule": { "name": "space-before-function-paren" } }]
|
||||
},
|
||||
{
|
||||
"removed": "space-before-keywords",
|
||||
"replacedBy": [{ "rule": { "name": "keyword-spacing" } }]
|
||||
},
|
||||
{
|
||||
"removed": "space-in-brackets",
|
||||
"replacedBy": [
|
||||
{ "rule": { "name": "object-curly-spacing" } },
|
||||
{ "rule": { "name": "array-bracket-spacing" } },
|
||||
{ "rule": { "name": "computed-property-spacing" } }
|
||||
]
|
||||
},
|
||||
{
|
||||
"removed": "space-return-throw-case",
|
||||
"replacedBy": [{ "rule": { "name": "keyword-spacing" } }]
|
||||
},
|
||||
{
|
||||
"removed": "space-unary-word-ops",
|
||||
"replacedBy": [{ "rule": { "name": "space-unary-ops" } }]
|
||||
},
|
||||
{
|
||||
"removed": "spaced-line-comment",
|
||||
"replacedBy": [{ "rule": { "name": "spaced-comment" } }]
|
||||
},
|
||||
{ "removed": "valid-jsdoc", "replacedBy": [] },
|
||||
{ "removed": "require-jsdoc", "replacedBy": [] }
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user