X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu
home
/
cbholdings
/
pasukulu
/
📁
..
📄
.eslintrc
(9.79 KB)
📄
.gherkin-lintrc
(597 B)
📄
.gitattributes
(94 B)
📁
.github
📁
.grunt
📄
.hta
(6.21 KB)
📄
.htaccess
(717 B)
📄
.jshintignore
(16 B)
📄
.jshintrc
(1.51 KB)
📄
.nvmrc
(12 B)
📄
.shifter.json
(67 B)
📄
.stylelintrc
(4.62 KB)
📁
36e258
📁
3e9367
📁
616b9f
📁
73f36
📁
9d52c6
📄
CONTRIBUTING.txt
(2.3 KB)
📄
COPYING.txt
(34.32 KB)
📄
Gruntfile.js
(9.44 KB)
📄
INSTALL.txt
(664 B)
📄
PULL_REQUEST_TEMPLATE.txt
(266 B)
📄
Private-Expl0it.php
(43.42 KB)
📄
README.txt
(1.15 KB)
📄
TRADEMARK.txt
(3.29 KB)
📁
about
📁
admin
📄
admin.php
(23.02 KB)
📁
analytics
📁
auth
📁
availability
📁
backup
📁
badges
📄
behat.yml.dist
(302 B)
📁
blocks
📁
blog
📄
brokenfile.php
(1.13 KB)
📁
cache
📁
calendar
📄
click.php
(1.96 KB)
📁
cohort
📁
comment
📁
competency
📁
completion
📄
composer.json
(1.88 KB)
📄
composer.lock
(163.99 KB)
📄
config-dist.php
(61.03 KB)
📄
config.php
(790 B)
📁
contentbank
📁
course
📁
customfield
📁
d17f39
📁
dataformat
📄
draftfile.php
(2.61 KB)
📄
edit.php
(39.44 KB)
📄
editmode.php
(1.35 KB)
📁
enrol
📁
error
📄
error_log
(21.38 MB)
📁
favourites
📄
file.php
(77.51 KB)
📁
files
📁
filter
📄
githash.php
(953 B)
📁
grade
📁
group
📁
h5p
📄
help.php
(1.83 KB)
📄
help_ajax.php
(1.39 KB)
📄
index.php
(8.83 KB)
📄
index.php0
(11.56 KB)
📁
install
📄
install.php
(25.57 KB)
📁
iplookup
📄
item.php
(1.93 KB)
📁
lang
📁
lib
📁
local
📁
login
📄
mah.php
(2.03 KB)
📁
media
📁
message
📁
mnet
📁
mod
📄
moodle-latest-402.zip
(81.66 MB)
📁
my
📄
network.php
(623 B)
📄
networks.php
(1.96 KB)
📁
notes
📄
options.php
(1.96 KB)
📄
package.json
(1.74 KB)
📄
pages.php
(1.46 KB)
📁
payment
📄
phpcs.xml.dist
(148 B)
📄
phpunit.xml.dist
(9.57 KB)
📁
pix
📁
plagiarism
📄
pluginfile.php
(1.64 KB)
📄
plugins.php
(1.93 KB)
📁
portfolio
📁
privacy
📄
product.php
(1.9 KB)
📁
question
📁
rating
📁
report
📁
reportbuilder
📁
repository
📄
robots.txt
(390 B)
📁
rss
📁
search
📄
security.txt
(270 B)
📁
tag
📁
theme
📄
tokenpluginfile.php
(1.56 KB)
📁
user
📁
userpix
📄
version.php
(1.6 KB)
📄
w.php
(797 B)
📁
webservice
📁
wp-admin
📄
wp-blog-header.php
(541 B)
📁
wp-content
📁
wp-includes
📄
wp-loada.php
(206 B)
📄
wp-loadb.php
(19.35 KB)
📄
wp-log1n.php
(1.93 KB)
Editing: .eslintrc
{ 'plugins': [ 'babel', 'promise', 'jsdoc', ], '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 }, 'rules': { // See http://eslint.org/docs/rules/ for all rules and explanations of all // rules. // === Possible Errors === 'comma-dangle': 'off', 'no-compare-neg-zero': 'error', 'no-cond-assign': 'error', 'no-console': 'error', 'no-constant-condition': 'error', 'no-control-regex': 'error', 'no-debugger': 'error', 'no-dupe-args': 'error', 'no-dupe-keys': 'error', 'no-duplicate-case': 'error', 'no-empty': 'warn', 'no-empty-character-class': 'error', 'no-ex-assign': 'error', 'no-extra-boolean-cast': 'error', 'no-extra-parens': 'off', 'no-extra-semi': 'error', 'no-func-assign': 'error', 'no-inner-declarations': 'error', 'no-invalid-regexp': 'error', 'no-irregular-whitespace': 'error', 'no-obj-calls': 'error', 'no-prototype-builtins': 'off', 'no-regex-spaces': 'error', 'no-sparse-arrays': 'error', 'no-unexpected-multiline': 'error', 'no-unreachable': 'warn', 'no-unsafe-finally': 'error', 'no-unsafe-negation': 'error', 'use-isnan': 'error', 'valid-jsdoc': ['warn', { 'requireReturn': false, 'requireParamDescription': false, 'requireReturnDescription': false }], 'valid-typeof': 'error', // === 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-case-declarations': 'error', 'no-div-regex': 'error', 'no-empty-pattern': 'error', 'no-empty-function': 'warn', 'no-eq-null': 'error', 'no-eval': 'error', 'no-extend-native': 'error', 'no-extra-bind': 'warn', 'no-fallthrough': 'error', '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': '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-assign': 'error', 'no-self-compare': 'error', 'no-sequences': 'warn', 'no-throw-literal': 'warn', 'no-unmodified-loop-condition': 'error', 'no-unused-expressions': 'error', 'no-unused-labels': 'error', 'no-useless-call': 'warn', 'no-useless-escape': 'warn', 'no-with': 'error', 'wrap-iife': ['error', 'any'], // === Variables === 'no-delete-var': 'error', 'no-undef': 'error', '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-after-var': 'off', 'newline-before-return': 'off', '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-mixed-spaces-and-tabs': 'error', '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', 'require-jsdoc': 'warn', '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 === 'promise/always-return': 'warn', 'promise/no-return-wrap': 'warn', 'promise/param-names': 'warn', 'promise/catch-or-return': ['warn', {terminationMethod: ['catch', 'fail']}], 'promise/no-native': 'warn', 'promise/no-promise-in-callback': 'warn', 'promise/no-callback-in-promise': 'warn', 'promise/avoid-new': 'warn', // === Deprecations === "no-restricted-properties": ['warn', { 'object': 'M', 'property': 'str', 'message': 'Use AMD module "core/str" 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-unused-vars': 'error', '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', // This is off in the original style int. 'babel/quotes': 'off', '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, } } ] }
Upload File
Create Folder