-
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.
Merge pull request #25 from washingtonstateuniversity/feature/cleanup…
…-issues Catch all PR to cleanup outstanding issues
- Loading branch information
Showing
25 changed files
with
368 additions
and
124 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
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,27 @@ | ||
{ | ||
"extends": "eslint:recommended", | ||
"plugins": [], | ||
"parser": "babel-eslint", | ||
"parserOptions": { | ||
"ecmaVersion": 2017, | ||
"sourceType": "module", | ||
"experimentalDecorators": true, | ||
"allowImportExportEverywhere": true | ||
}, | ||
"rules": { | ||
"no-console": "warn", | ||
"no-var": "error", | ||
"prefer-const": "error", | ||
"semi": "error", | ||
"no-unused-vars": "warn" | ||
}, | ||
"globals": { | ||
"Modernizr": true, | ||
"window": true, | ||
"document": true | ||
}, | ||
"env": { | ||
"node": true, | ||
"browser": true | ||
} | ||
} |
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,113 @@ | ||
{ | ||
"rules": { | ||
"at-rule-empty-line-before": [ "always", { | ||
except: ["blockless-after-blockless", "first-nested"], | ||
ignore: ["after-comment"], | ||
} ], | ||
"at-rule-name-case": "lower", | ||
"at-rule-name-space-after": "always-single-line", | ||
"at-rule-no-unknown": [ true, { | ||
ignoreAtRules: ["use", "forward", "import", "mixin", "include", "function", "if", "else", "return", "extend", "error", "warn", "debug"], | ||
} ], | ||
"at-rule-semicolon-newline-after": "always", | ||
"block-closing-brace-newline-after": "always", | ||
"block-closing-brace-newline-before": "always", | ||
"block-opening-brace-newline-after": "always", | ||
"block-opening-brace-space-before": "always", | ||
"color-hex-case": "lower", | ||
"color-hex-length": "short", | ||
"color-named": [ "never", { | ||
ignore: ["inside-function"] | ||
} ], | ||
"color-no-invalid-hex": true, | ||
"comment-empty-line-before": [ "always", { | ||
ignore: ["stylelint-commands"], | ||
} ], | ||
"declaration-bang-space-after": "never", | ||
"declaration-bang-space-before": "always", | ||
"declaration-block-no-duplicate-properties": [ true, { | ||
ignore: ["consecutive-duplicates"], | ||
} ], | ||
"declaration-block-no-shorthand-property-overrides": true, | ||
"declaration-block-semicolon-newline-after": "always", | ||
"declaration-block-semicolon-space-before": "never", | ||
"declaration-block-trailing-semicolon": "always", | ||
"declaration-colon-newline-after": "always-multi-line", | ||
"declaration-colon-space-after": "always-single-line", | ||
"declaration-colon-space-before": "never", | ||
"font-family-name-quotes": "always-where-recommended", | ||
"font-weight-notation": "numeric", | ||
"function-calc-no-unspaced-operator": true, | ||
"function-comma-space-after": "always", | ||
"function-comma-space-before": "never", | ||
"function-linear-gradient-no-nonstandard-direction": true, | ||
"function-max-empty-lines": 1, | ||
"function-name-case": "lower", | ||
"function-parentheses-space-inside": "never", | ||
"function-url-quotes": "never", | ||
"function-whitespace-after": "always", | ||
"indentation": "tab", | ||
"keyframe-declaration-no-important": true, | ||
"length-zero-no-unit": true, | ||
"max-empty-lines": 2, | ||
"max-line-length": [ 80, { | ||
"ignore": "non-comments", | ||
} ], | ||
"media-feature-colon-space-after": "always", | ||
"media-feature-colon-space-before": "never", | ||
"media-feature-range-operator-space-after": "always", | ||
"media-feature-range-operator-space-before": "always", | ||
"media-query-list-comma-newline-after": "always-multi-line", | ||
"media-query-list-comma-space-after": "always-single-line", | ||
"media-query-list-comma-space-before": "never", | ||
"no-eol-whitespace": true, | ||
"no-extra-semicolons": true, | ||
"no-invalid-double-slash-comments": true, | ||
"no-missing-end-of-source-newline": true, | ||
"number-leading-zero": "never", | ||
"number-no-trailing-zeros": true, | ||
"property-case": "lower", | ||
"property-no-unknown": true, | ||
"rule-empty-line-before": [ "always", { | ||
except: ["after-single-line-comment"] | ||
} ], | ||
"selector-attribute-brackets-space-inside": "never", | ||
"selector-attribute-operator-space-after": "never", | ||
"selector-attribute-operator-space-before": "never", | ||
"selector-attribute-quotes": "always", | ||
"selector-class-pattern": [ | ||
"^[a-z]+(-[a-z]+)*", | ||
{ | ||
"message": "Selector should use lowercase and separate words with hyphens (selector-class-pattern)", | ||
}, | ||
], | ||
"selector-id-pattern": [ | ||
"^[a-z]+(-[a-z]+)*", | ||
{ | ||
"message": "Selector should use lowercase and separate words with hyphens (selector-id-pattern)", | ||
}, | ||
], | ||
"selector-combinator-space-after": "always", | ||
"selector-combinator-space-before": "always", | ||
"selector-list-comma-newline-after": "always", | ||
"selector-list-comma-space-before": "never", | ||
"selector-max-empty-lines": 0, | ||
"selector-pseudo-class-case": "lower", | ||
"selector-pseudo-class-no-unknown": true, | ||
"selector-pseudo-class-parentheses-space-inside": "never", | ||
"selector-pseudo-element-case": "lower", | ||
"selector-pseudo-element-colon-notation": "single", | ||
"selector-pseudo-element-no-unknown": true, | ||
"selector-type-case": "lower", | ||
"selector-type-no-unknown": true, | ||
"shorthand-property-no-redundant-values": true, | ||
"string-no-newline": true, | ||
"string-quotes": "double", | ||
"unit-case": "lower", | ||
"unit-no-unknown": true, | ||
"value-keyword-case": "lower", | ||
"value-list-comma-newline-after": "always-multi-line", | ||
"value-list-comma-space-after": "always-single-line", | ||
"value-list-comma-space-before": "never", | ||
} | ||
} |
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,49 @@ | ||
sudo: false | ||
language: php | ||
|
||
# Cache some data across builds for performance. | ||
cache: | ||
apt: true | ||
directories: | ||
- node_modules | ||
- vendor | ||
- $HOME/.composer/cache | ||
|
||
notifications: | ||
email: | ||
on_success: never | ||
on_failure: change | ||
slack: | ||
on_pull_requests: true | ||
on_success: change | ||
on_failure: always | ||
on_start: never | ||
on_cancel: always | ||
rooms: | ||
- wsu-ucomm:n2TLZRJd84rMOMbkKthSEMgS | ||
|
||
branches: | ||
only: | ||
- master | ||
|
||
matrix: | ||
include: | ||
- php: 7.1 | ||
env: WP_TRAVISCI=grunt | ||
|
||
before_script: | ||
- export PATH="$HOME/.composer/vendor/bin:$PATH" | ||
- mysql --version | ||
- phpenv config-rm xdebug.ini | ||
- phpenv versions | ||
- php --version | ||
- composer install | ||
- nvm install stable | ||
- npm install -g grunt-cli | ||
- npm install | ||
- npm --version | ||
- node --version | ||
|
||
script: | ||
- grunt --version | ||
- grunt default |
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
Oops, something went wrong.