HEX
Server: nginx/1.20.2
System: Linux racknerd-d3d1ff4 3.10.0-693.11.6.el7.x86_64 #1 SMP Thu Jan 4 01:06:37 UTC 2018 x86_64
User: www (1000)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/www.movieloversky.com/wp-content/plugins/the-paste/.eslintrc
{
  "root": true,
  "parser": "babel-eslint",
  "extends": [
	"wordpress",
	"plugin:react/recommended"
  ],
  "env": {
	"browser": false,
	"es6": true,
	"node": true,
	"mocha": true
  },
  "parserOptions": {
	"sourceType": "module",
	"ecmaFeatures": {
	  "jsx": true
	}
  },
  "globals": {
	"wp": true,
	"wpApiSettings": true,
	"window": true,
		"document": true
  },
  "plugins": ["react"],
  "settings": {
	"react": {
	  "pragma": "wp"
	}
  },
  "rules": {
		"linebreak-style": 0,
	"array-bracket-spacing": ["error", "always"],
	"brace-style": ["error", "1tbs"],
	"camelcase": ["error", { "properties": "never" }],
	"comma-dangle": ["error", "always-multiline"],
	"comma-spacing": "error",
	"comma-style": "error",
	"computed-property-spacing": ["error", "always"],
	"constructor-super": "error",
	"dot-notation": "error",
	"eol-last": "error",
	"eqeqeq": "error",
	"func-call-spacing": "error",
	"indent": ["error", "tab", { "SwitchCase": 1 }],
	"jsx-quotes": "error",
	"key-spacing": "error",
	"keyword-spacing": "error",
	"lines-around-comment": "off",
	"no-alert": "error",
	"no-bitwise": "error",
	"no-caller": "error",
	"no-console": "off",
	"no-const-assign": "error",
	"no-debugger": "error",
	"no-dupe-args": "error",
	"no-dupe-class-members": "error",
	"no-dupe-keys": "error",
	"no-duplicate-case": "error",
	"no-duplicate-imports": "error",
	"no-else-return": "error",
	"no-eval": "error",
	"no-extra-semi": "error",
	"no-fallthrough": "error",
	"no-lonely-if": "error",
	"no-mixed-operators": "error",
	"no-mixed-spaces-and-tabs": "error",
	"no-multiple-empty-lines": ["error", { "max": 1 }],
	"no-multi-spaces": "error",
	"no-multi-str": "off",
	"no-negated-in-lhs": "error",
	"no-nested-ternary": "error",
	"no-redeclare": "error",
	"no-restricted-syntax": [
	  "error",
	  {
		"selector":
		"ImportDeclaration[source.value=/^@wordpress\\u002F.+\\u002F/]",
		"message": "Path access on WordPress dependencies is not allowed."
	  },
	  {
		"selector": "ImportDeclaration[source.value=/^blocks$/]",
		"message": "Use @wordpress/blocks as import path instead."
	  },
	  {
		"selector": "ImportDeclaration[source.value=/^components$/]",
		"message": "Use @wordpress/components as import path instead."
	  },
	  {
		"selector": "ImportDeclaration[source.value=/^date$/]",
		"message": "Use @wordpress/date as import path instead."
	  },
	  {
		"selector": "ImportDeclaration[source.value=/^editor$/]",
		"message": "Use @wordpress/editor as import path instead."
	  },
	  {
		"selector": "ImportDeclaration[source.value=/^element$/]",
		"message": "Use @wordpress/element as import path instead."
	  },
	  {
		"selector": "ImportDeclaration[source.value=/^i18n$/]",
		"message": "Use @wordpress/i18n as import path instead."
	  },
	  {
		"selector": "ImportDeclaration[source.value=/^data$/]",
		"message": "Use @wordpress/data as import path instead."
	  },
	  {
		"selector": "ImportDeclaration[source.value=/^utils$/]",
		"message": "Use @wordpress/utils as import path instead."
	  },
	  {
		"selector":
		"CallExpression[callee.name=/^__|_n|_x$/]:not([arguments.0.type=/^Literal|BinaryExpression$/])",
		"message": "Translate function arguments must be string literals."
	  },
	  {
		"selector":
		"CallExpression[callee.name=/^_n|_x$/]:not([arguments.1.type=/^Literal|BinaryExpression$/])",
		"message": "Translate function arguments must be string literals."
	  },
	  {
		"selector":
		"CallExpression[callee.name=_nx]:not([arguments.2.type=/^Literal|BinaryExpression$/])",
		"message": "Translate function arguments must be string literals."
	  }
	],
	"no-shadow": "error",
	"no-undef": "error",
	"no-undef-init": "error",
	"no-unreachable": "error",
	"no-unsafe-negation": "error",
	"no-unused-expressions": "error",
	"no-unused-vars": "error",
	"no-useless-computed-key": "error",
	"no-useless-constructor": "error",
	"no-useless-return": "error",
	"no-var": "error",
	"no-whitespace-before-property": "error",
	"object-curly-spacing": ["error", "always"],
	"padded-blocks": ["error", { "classes": "always" }],
	"prefer-const": "error",
	"quote-props": ["error", "as-needed"],
	"react/display-name": "off",
	"react/jsx-curly-spacing": [
	  "error",
	  {
		"when": "always",
		"children": true
	  }
	],
	"react/jsx-equals-spacing": "error",
	"react/jsx-indent": ["error", "tab"],
	"react/jsx-indent-props": ["error", "tab"],
	"react/jsx-key": "error",
	"react/jsx-tag-spacing": "error",
	"react/no-children-prop": "off",
	"react/no-find-dom-node": "warn",
	"react/prop-types": "off",
	"semi": "error",
	"semi-spacing": "error",
	"space-before-blocks": ["error", "always"],
	"space-before-function-paren": ["error", "never"],
	"space-in-parens": ["error", "always"],
	"space-infix-ops": ["error", { "int32Hint": false }],
	"space-unary-ops": [
	  "error",
	  {
		"overrides": {
		  "!": true
		}
	  }
	],
	"template-curly-spacing": ["error", "always"],
	"valid-jsdoc": ["error", { "requireReturn": false }],
	"valid-typeof": "error",
	"yoda": 1
  }
}