-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Adding vendor theme files - Tweaked CODEOWNERS file - Readme revisions
- Loading branch information
1 parent
9cf52bf
commit 0138928
Showing
156 changed files
with
19,199 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"modules": false, | ||
"loose": true | ||
} | ||
] | ||
], | ||
"plugins": [ | ||
"transform-es2015-modules-strip" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_size = 4 | ||
trim_trailing_whitespace = true | ||
|
||
[*.py] | ||
indent_style = space | ||
|
||
[*.php] | ||
indent_style = tab | ||
|
||
[*.{js,css,scss,sass,html}] | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Ignore project config json files | ||
package.json | ||
.eslintrc.json | ||
gulp-config.template.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,229 @@ | ||
{ | ||
"root": true, | ||
"parser": "babel-eslint", | ||
"env": { | ||
"browser": true, | ||
"es6": true, | ||
"jquery": true, | ||
"amd": true | ||
}, | ||
"globals": { | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"ecmaVersion": 8, | ||
"sourceType": "module" | ||
}, | ||
"rules": { | ||
// Possible Errors | ||
"no-extra-parens": "error", | ||
"no-prototype-builtins": "off", | ||
"no-template-curly-in-string": "error", | ||
"no-unsafe-negation": "error", | ||
"valid-jsdoc": "error", | ||
|
||
// Best Practices | ||
"accessor-pairs": "error", | ||
"array-callback-return": "error", | ||
"block-scoped-var": "error", | ||
"class-methods-use-this": "off", | ||
"complexity": "error", | ||
"consistent-return": "error", | ||
"curly": "error", | ||
"default-case": "error", | ||
"dot-location": ["error", "property"], | ||
"dot-notation": "error", | ||
"eqeqeq": "error", | ||
"guard-for-in": "error", | ||
"no-alert": "error", | ||
"no-caller": "error", | ||
"no-div-regex": "error", | ||
"no-else-return": "error", | ||
"no-empty-function": "error", | ||
"no-eq-null": "error", | ||
"no-eval": "error", | ||
"no-extend-native": "error", | ||
"no-extra-bind": "error", | ||
"no-extra-label": "error", | ||
"no-floating-decimal": "error", | ||
"no-global-assign": "error", | ||
"no-implicit-coercion": "error", | ||
"no-implicit-globals": "error", | ||
"no-implied-eval": "error", | ||
"no-invalid-this": "off", | ||
"no-iterator": "error", | ||
"no-labels": "error", | ||
"no-lone-blocks": "error", | ||
"no-loop-func": "error", | ||
"no-magic-numbers": "off", | ||
"no-multi-spaces": ["error", { | ||
"exceptions": { | ||
"AssignmentExpression": true, | ||
"ArrowFunctionExpression": true, | ||
"CallExpression": true, | ||
"VariableDeclarator": true | ||
} | ||
} | ||
], | ||
"no-multi-str": "error", | ||
"no-new-func": "off", | ||
"no-new-wrappers": "error", | ||
"no-new": "error", | ||
"no-octal-escape": "error", | ||
"no-param-reassign": "off", | ||
"no-proto": "error", | ||
"no-restricted-properties": "error", | ||
"no-return-assign": "off", | ||
"no-script-url": "error", | ||
"no-self-compare": "error", | ||
"no-sequences": "error", | ||
"no-throw-literal": "error", | ||
"no-unmodified-loop-condition": "error", | ||
"no-unused-expressions": "error", | ||
"no-useless-call": "error", | ||
"no-useless-concat": "error", | ||
"no-useless-escape": "error", | ||
"no-void": "error", | ||
"no-warning-comments": "off", | ||
"no-with": "error", | ||
"radix": "error", | ||
"vars-on-top": "error", | ||
"wrap-iife": "error", | ||
"yoda": "error", | ||
|
||
// Strict Mode | ||
"strict": "error", | ||
|
||
// Variables | ||
"init-declarations": "off", | ||
"no-catch-shadow": "error", | ||
"no-label-var": "error", | ||
"no-restricted-globals": "error", | ||
"no-shadow-restricted-names": "error", | ||
"no-shadow": "off", | ||
"no-undef-init": "error", | ||
"no-undefined": "off", | ||
"no-use-before-define": "off", | ||
|
||
// Node.js and CommonJS | ||
"callback-return": "off", | ||
"global-require": "error", | ||
"handle-callback-err": "error", | ||
"no-mixed-requires": "error", | ||
"no-new-require": "error", | ||
"no-path-concat": "error", | ||
"no-process-env": "error", | ||
"no-process-exit": "error", | ||
"no-restricted-modules": "error", | ||
"no-sync": "error", | ||
|
||
// Stylistic Issues | ||
"array-bracket-spacing": "error", | ||
"block-spacing": "error", | ||
"brace-style": "error", | ||
"camelcase": "error", | ||
"comma-dangle": "error", | ||
"comma-spacing": "error", | ||
"comma-style": "error", | ||
"computed-property-spacing": "error", | ||
"consistent-this": "error", | ||
"eol-last": "error", | ||
"func-call-spacing": "error", | ||
"func-names": "off", | ||
"func-style": "off", | ||
"id-blacklist": "error", | ||
"id-length": "off", | ||
"id-match": "error", | ||
"indent": ["error", 2, { "SwitchCase": 1 }], | ||
"jsx-quotes": "error", | ||
"key-spacing": "off", | ||
"keyword-spacing": "error", | ||
"line-comment-position": "off", | ||
"linebreak-style": ["error", "unix"], | ||
"lines-around-comment": "off", | ||
"lines-around-directive": "error", | ||
"max-depth": ["error", 10], | ||
"max-len": "off", | ||
"max-lines": "off", | ||
"max-nested-callbacks": "error", | ||
"max-params": "off", | ||
"max-statements-per-line": "error", | ||
"max-statements": "off", | ||
"multiline-ternary": "off", | ||
"new-cap": ["error", { "capIsNewExceptionPattern": "$.*" }], | ||
"new-parens": "error", | ||
"newline-after-var": "off", | ||
"newline-before-return": "off", | ||
"newline-per-chained-call": ["error", { "ignoreChainWithDepth": 5 }], | ||
"no-array-constructor": "error", | ||
"no-bitwise": "error", | ||
"no-continue": "off", | ||
"no-inline-comments": "off", | ||
"no-lonely-if": "error", | ||
"no-mixed-operators": "off", | ||
"no-multiple-empty-lines": "error", | ||
"no-negated-condition": "off", | ||
"no-nested-ternary": "error", | ||
"no-new-object": "error", | ||
"no-plusplus": "off", | ||
"no-restricted-syntax": "error", | ||
"no-tabs": "error", | ||
"no-ternary": "off", | ||
"no-trailing-spaces": "error", | ||
"no-underscore-dangle": "off", | ||
"no-unneeded-ternary": "error", | ||
"no-whitespace-before-property": "error", | ||
"object-curly-newline": ["error", { "minProperties": 1 }], | ||
"object-curly-spacing": ["error", "always"], | ||
"object-property-newline": "error", | ||
"one-var-declaration-per-line": "off", | ||
"one-var": "off", | ||
"operator-assignment": "error", | ||
"operator-linebreak": "off", | ||
"padded-blocks": "off", | ||
"quote-props": ["error", "as-needed"], | ||
"quotes": ["error", "single"], | ||
"require-jsdoc": "off", | ||
"semi-spacing": "error", | ||
"semi": ["error", "always"], | ||
"sort-keys": "off", | ||
"sort-vars": "error", | ||
"space-before-blocks": "error", | ||
"space-before-function-paren": ["error", { | ||
"anonymous": "always", | ||
"named": "never" | ||
}], | ||
"space-in-parens": "error", | ||
"space-infix-ops": "error", | ||
"space-unary-ops": "error", | ||
"spaced-comment": "error", | ||
"unicode-bom": "error", | ||
"wrap-regex": "off", | ||
|
||
// ECMAScript 6 | ||
"arrow-body-style": "off", | ||
"arrow-parens": "error", | ||
"arrow-spacing": "error", | ||
"generator-star-spacing": "error", | ||
"no-confusing-arrow": "error", | ||
"no-duplicate-imports": "error", | ||
"no-restricted-imports": "error", | ||
"no-useless-computed-key": "error", | ||
"no-useless-constructor": "error", | ||
"no-useless-rename": "error", | ||
"no-var": "error", | ||
"object-shorthand": ["error", "never"], // MODIFIED webcom | ||
"prefer-arrow-callback": "error", | ||
"prefer-const": "error", | ||
"prefer-numeric-literals": "error", | ||
"prefer-reflect": "off", | ||
"prefer-rest-params": "error", | ||
"prefer-spread": "error", | ||
"prefer-template": "error", | ||
"rest-spread-spacing": "error", | ||
"sort-imports": "error", | ||
"symbol-description": "error", | ||
"template-curly-spacing": "error", | ||
"yield-star-spacing": "error" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Users/teams listed below are deemed responsible for the code in this repo. | ||
|
||
# Responsible users will automatically be assigned to relevant pull requests | ||
# for this repo. | ||
# See https://help.github.com/articles/about-codeowners/ for more info. | ||
|
||
* @UCF/webcom | ||
* @UCF/BusinessServices | ||
* @UCF/Admin&Finance |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
name: "\U0001F41B Bug report" | ||
about: Create a report to help us improve | ||
|
||
--- | ||
|
||
<!-- | ||
Thank you for reporting a possible bug in {{My-Project}}. | ||
Please provide a general summary of the issue in the Title above and fill in as much of the template below as you can. | ||
The version of WordPress can be found on the Admin Dashboard page in the bottom right-hand corner. | ||
The version of this theme can be found by navigating to Appearance > Themes and clicking on Theme Details. | ||
--> | ||
|
||
**Describe the bug** | ||
<!--- Provide a more detailed description of the issue you're having --> | ||
|
||
**Steps to Reproduce** | ||
<!--- Provide a clear set of steps to reproduce this bug --> | ||
1. | ||
2. | ||
3. | ||
4. | ||
|
||
**Expected Behavior** | ||
<!--- Tell us what should happen --> | ||
|
||
**Possible Fix** | ||
<!--- Not required: suggest a fix or reason for the bug --> | ||
|
||
**Your environment:** | ||
<!-- Include as many relevant details as possible. --> | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS] | ||
- Browser & Version [e.g. chrome 68, safari] | ||
- WordPress Version: [e.g. 4.9.8] | ||
- Theme Version: [e.g. 1.5.2] | ||
|
||
**Additional context** | ||
<!--- How has this bug affected you? What were you trying to accomplish? Provide a link to a live example or screenshots if available. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
name: "\U0001F680 Feature request" | ||
about: Suggest an idea for this theme | ||
|
||
--- | ||
|
||
<!-- | ||
Thank you for suggesting an idea to make {{My-Project}} better. | ||
Please provide a general summary of your feature request in the Title above, and fill in as much of the template below as you can. | ||
--> | ||
|
||
**Description** | ||
<!-- Provide a detailed description of the change or addition you are proposing --> | ||
<!-- If your feature request is related to a problem you're trying to solve, describe that here as well --> | ||
|
||
**Why it's Important** | ||
<!--- Why is this change important to you or your organization? --> | ||
<!--- How can it benefit others who utilize this theme? --> | ||
|
||
**Alternatives** | ||
<!-- Please describe alternative solutions or features you've considered --> | ||
|
||
**Possible Implementation** | ||
<!--- Not required: suggest an idea for implementing addition or change --> | ||
|
||
**Additional context** | ||
<!-- Add any other context or screenshots related to this feature request --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!--- | ||
Thank you for contributing to {{My-Project}}. | ||
Please make sure you've read our contributing guidelines: | ||
https://github.com/UCF/{{My-Project}}/blob/master/CONTRIBUTING.md | ||
Provide a general summary of your changes in the Title above and fill in the template below. | ||
--> | ||
|
||
**Description** | ||
<!--- Describe your changes in detail --> | ||
|
||
**Motivation and Context** | ||
<!--- Why is this change required? What problem does it solve? --> | ||
<!--- If it fixes an open issue, please link to the issue here. --> | ||
|
||
**How Has This Been Tested?** | ||
<!--- Please describe how you tested your changes. --> | ||
|
||
**Types of changes** | ||
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> | ||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to change) | ||
|
||
**Checklist:** | ||
<!--- Go over all the following points, and put an `x` in all the boxes that apply. --> | ||
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> | ||
- [ ] My code follows the code style of this project. | ||
- [ ] My change requires an update to the documentation. | ||
- [ ] I have updated the documentation accordingly. |
Oops, something went wrong.