Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
eslint /
conf /
Delete
Unzip
Name
Size
Permission
Date
Action
category-list.json
2.88
KB
-rw-r--r--
2019-09-14 01:35
config-schema.js
1.97
KB
-rw-r--r--
2023-12-15 20:21
default-cli-options.js
650
B
-rw-r--r--
2019-09-14 01:35
environments.js
3.69
KB
-rw-r--r--
2019-09-14 01:35
eslint-all.js
918
B
-rw-r--r--
2019-09-14 01:35
eslint-recommended.js
2.28
KB
-rw-r--r--
2019-09-14 01:35
replacements.json
1.01
KB
-rw-r--r--
2019-09-14 01:35
Save
Rename
/** * @fileoverview Defines a schema for configs. * @author Sylvan Mably */ "use strict"; const baseConfigProperties = { env: { type: "object" }, extends: { $ref: "#/definitions/stringOrStrings" }, globals: { type: "object" }, overrides: { type: "array", items: { $ref: "#/definitions/overrideConfig" } }, parser: { type: ["string", "null"] }, parserOptions: { type: "object" }, plugins: { type: "array" }, processor: { type: "string" }, rules: { type: "object" }, settings: { type: "object" }, noInlineConfig: { type: "boolean" }, reportUnusedDisableDirectives: { type: "boolean" }, ecmaFeatures: { type: "object" } // deprecated; logs a warning when used }; const configSchema = { definitions: { stringOrStrings: { oneOf: [ { type: "string" }, { type: "array", items: { type: "string" } } ] }, stringOrStringsRequired: { oneOf: [ { type: "string" }, { type: "array", items: { type: "string" }, minItems: 1 } ] }, // Config at top-level. objectConfig: { type: "object", properties: { root: { type: "boolean" }, ...baseConfigProperties }, additionalProperties: false }, // Config in `overrides`. overrideConfig: { type: "object", properties: { excludedFiles: { $ref: "#/definitions/stringOrStrings" }, files: { $ref: "#/definitions/stringOrStringsRequired" }, ...baseConfigProperties }, required: ["files"], additionalProperties: false } }, $ref: "#/definitions/objectConfig" }; module.exports = configSchema;