forked from mirror/_s
Updated based on feedback.
* Include skip-link-focus-fix.js in the js hint/lint tests & fix up the file. * Pull in .jshintrc from WP SVN. * Add PHPCompatibility Sniffs. * Sync the ignore statements to always exclude .min.js files. * Slim down the tested against PHP versions even more.
This commit is contained in:
parent
b8d776c59c
commit
e1f4b0add4
2
.jscsrc
2
.jscsrc
|
@ -2,6 +2,6 @@
|
||||||
"preset": "wordpress",
|
"preset": "wordpress",
|
||||||
"fileExtensions": [ ".js" ],
|
"fileExtensions": [ ".js" ],
|
||||||
"excludeFiles": [
|
"excludeFiles": [
|
||||||
"js/skip-link-focus-fix.js"
|
"js/**.min.js"
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -1,2 +1 @@
|
||||||
js/skip-link-focus-fix.js
|
js/**.min.js
|
||||||
**.min.js
|
|
26
.jshintrc
26
.jshintrc
|
@ -1,26 +0,0 @@
|
||||||
{
|
|
||||||
"boss": true,
|
|
||||||
"curly": true,
|
|
||||||
"eqeqeq": true,
|
|
||||||
"eqnull": true,
|
|
||||||
"es3": true,
|
|
||||||
"expr": true,
|
|
||||||
"immed": true,
|
|
||||||
"noarg": true,
|
|
||||||
"nonbsp": true,
|
|
||||||
"onevar": true,
|
|
||||||
"quotmark": "single",
|
|
||||||
"trailing": true,
|
|
||||||
"undef": true,
|
|
||||||
"unused": true,
|
|
||||||
|
|
||||||
"browser": true,
|
|
||||||
|
|
||||||
"globals": {
|
|
||||||
"_": false,
|
|
||||||
"Backbone": false,
|
|
||||||
"jQuery": false,
|
|
||||||
"JSON": false,
|
|
||||||
"wp": false
|
|
||||||
}
|
|
||||||
}
|
|
24
.travis.yml
24
.travis.yml
|
@ -22,15 +22,9 @@ matrix:
|
||||||
# Current $required_php_version for WordPress: 5.2.4
|
# Current $required_php_version for WordPress: 5.2.4
|
||||||
# aliased to 5.2.17
|
# aliased to 5.2.17
|
||||||
- php: '5.2'
|
- php: '5.2'
|
||||||
# aliased to 5.3.29
|
|
||||||
- php: '5.3'
|
|
||||||
# aliased to a recent 5.4.x version
|
|
||||||
- php: '5.4'
|
|
||||||
# aliased to a recent 5.5.x version
|
|
||||||
- php: '5.5'
|
|
||||||
env: SNIFF=1
|
|
||||||
# aliased to a recent 5.6.x version
|
# aliased to a recent 5.6.x version
|
||||||
- php: '5.6'
|
- php: '5.6'
|
||||||
|
env: SNIFF=1
|
||||||
# aliased to a recent 7.x version
|
# aliased to a recent 7.x version
|
||||||
- php: '7.0'
|
- php: '7.0'
|
||||||
# aliased to a recent hhvm version
|
# aliased to a recent hhvm version
|
||||||
|
@ -49,22 +43,26 @@ matrix:
|
||||||
# Failures in this section will result in build status 'errored'.
|
# Failures in this section will result in build status 'errored'.
|
||||||
before_script:
|
before_script:
|
||||||
- export PHPCS_DIR=/tmp/phpcs
|
- export PHPCS_DIR=/tmp/phpcs
|
||||||
- export WPCS_DIR=/tmp/wpcs
|
- export SNIFFS_DIR=/tmp/sniffs
|
||||||
# Install CodeSniffer for WordPress Coding Standards checks.
|
# Install CodeSniffer for WordPress Coding Standards checks.
|
||||||
- if [[ "$SNIFF" == "1" ]]; then git clone -b master --depth 1 https://github.com/squizlabs/PHP_CodeSniffer.git $PHPCS_DIR; fi
|
- if [[ "$SNIFF" == "1" ]]; then git clone -b master --depth 1 https://github.com/squizlabs/PHP_CodeSniffer.git $PHPCS_DIR; fi
|
||||||
# Install WordPress Coding Standards.
|
# Install WordPress Coding Standards.
|
||||||
- if [[ "$SNIFF" == "1" ]]; then git clone -b master --depth 1 https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git $WPCS_DIR; fi
|
- if [[ "$SNIFF" == "1" ]]; then git clone -b master --depth 1 https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git $SNIFFS_DIR; fi
|
||||||
# Set install path for WordPress Coding Standards.
|
# Install PHP Compatibility sniffs.
|
||||||
|
- if [[ "$SNIFF" == "1" ]]; then git clone -b master --depth 1 https://github.com/wimg/PHPCompatibility.git $SNIFFS_DIR/PHPCompatibility; fi
|
||||||
|
# Set install path for PHPCS sniffs.
|
||||||
# @link https://github.com/squizlabs/PHP_CodeSniffer/blob/4237c2fc98cc838730b76ee9cee316f99286a2a7/CodeSniffer.php#L1941
|
# @link https://github.com/squizlabs/PHP_CodeSniffer/blob/4237c2fc98cc838730b76ee9cee316f99286a2a7/CodeSniffer.php#L1941
|
||||||
- if [[ "$SNIFF" == "1" ]]; then $PHPCS_DIR/scripts/phpcs --config-set installed_paths $WPCS_DIR; fi
|
- if [[ "$SNIFF" == "1" ]]; then $PHPCS_DIR/scripts/phpcs --config-set installed_paths $SNIFFS_DIR; fi
|
||||||
# After CodeSniffer install you should refresh your path.
|
# After CodeSniffer install you should refresh your path.
|
||||||
- if [[ "$SNIFF" == "1" ]]; then phpenv rehash; fi
|
- if [[ "$SNIFF" == "1" ]]; then phpenv rehash; fi
|
||||||
# Install JSCS: JavaScript Code Style checker
|
# Install JSCS: JavaScript Code Style checker.
|
||||||
# @link http://jscs.info/
|
# @link http://jscs.info/
|
||||||
- if [[ "$SNIFF" == "1" ]]; then npm install -g jscs; fi
|
- if [[ "$SNIFF" == "1" ]]; then npm install -g jscs; fi
|
||||||
# Install JSHint, a JavaScript Code Quality Tool
|
# Install JSHint, a JavaScript Code Quality Tool.
|
||||||
# @link http://jshint.com/docs/
|
# @link http://jshint.com/docs/
|
||||||
- if [[ "$SNIFF" == "1" ]]; then npm install -g jshint; fi
|
- if [[ "$SNIFF" == "1" ]]; then npm install -g jshint; fi
|
||||||
|
# Pull in the WP Core jshint rules.
|
||||||
|
- wget https://develop.svn.wordpress.org/trunk/.jshintrc
|
||||||
|
|
||||||
# Run test script commands.
|
# Run test script commands.
|
||||||
# Default is specific to project language.
|
# Default is specific to project language.
|
||||||
|
|
|
@ -12,4 +12,7 @@
|
||||||
<exclude name="Generic.WhiteSpace.ScopeIndent.Incorrect" />
|
<exclude name="Generic.WhiteSpace.ScopeIndent.Incorrect" />
|
||||||
<exclude name="PEAR.Functions.FunctionCallSignature.Indent" />
|
<exclude name="PEAR.Functions.FunctionCallSignature.Indent" />
|
||||||
</rule>
|
</rule>
|
||||||
|
|
||||||
|
<!-- Include sniffs for PHP cross-version compatibility. -->
|
||||||
|
<rule ref="PHPCompatibility"/>
|
||||||
</ruleset>
|
</ruleset>
|
|
@ -1,16 +1,16 @@
|
||||||
/**
|
/**
|
||||||
* skip-link-focus-fix.js
|
* File skip-link-focus-fix.js.
|
||||||
*
|
*
|
||||||
* Helps with accessibility for keyboard only users.
|
* Helps with accessibility for keyboard only users.
|
||||||
*
|
*
|
||||||
* Learn more: https://git.io/vWdr2
|
* Learn more: https://git.io/vWdr2
|
||||||
*/
|
*/
|
||||||
( function() {
|
( function() {
|
||||||
var is_webkit = navigator.userAgent.toLowerCase().indexOf( 'webkit' ) > -1,
|
var isWebkit = navigator.userAgent.toLowerCase().indexOf( 'webkit' ) > -1,
|
||||||
is_opera = navigator.userAgent.toLowerCase().indexOf( 'opera' ) > -1,
|
isOpera = navigator.userAgent.toLowerCase().indexOf( 'opera' ) > -1,
|
||||||
is_ie = navigator.userAgent.toLowerCase().indexOf( 'msie' ) > -1;
|
isIe = navigator.userAgent.toLowerCase().indexOf( 'msie' ) > -1;
|
||||||
|
|
||||||
if ( ( is_webkit || is_opera || is_ie ) && document.getElementById && window.addEventListener ) {
|
if ( ( isWebkit || isOpera || isIe ) && document.getElementById && window.addEventListener ) {
|
||||||
window.addEventListener( 'hashchange', function() {
|
window.addEventListener( 'hashchange', function() {
|
||||||
var id = location.hash.substring( 1 ),
|
var id = location.hash.substring( 1 ),
|
||||||
element;
|
element;
|
||||||
|
|
Reference in New Issue