diff --git a/README.md b/README.md index 64aac1c..7f9c782 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ c9.ide.language.php.wordpress __Name__: WordPress Coding Standards Linter for Cloud9 -__Current Version__: 1.0.0 (2018-10-10) +__Current Version__: 1.0.1 (2018-10-11) __Author__: [EP4](https://ep4.com) @@ -84,6 +84,11 @@ Resources Changelog --------- +### 1.0.1 - 2018-10-11 + +* Removing the ``tab-width=0`` parameter since the tab-width is already set by WordPress rules and it was now triggering false positives. +* Fixing some typos in the README.md file. + ### 1.0.0 - 2018-10-10 * Updating PHP_CodeSniffer library to version 3.3.2. diff --git a/package.json b/package.json index 5e36f7a..51db132 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "phpcs.wpcs", "description": "Displays warnings in the IDE with the help of PHP CodeSniffer configured with WordPress Coding Standards and PHPCompatibility rules.", - "version": "1.0.0", + "version": "1.0.1", "author": "EP4", "contributors": [ { diff --git a/worker/phpcs_handler.js b/worker/phpcs_handler.js index 76cc6da..2f9fd81 100644 --- a/worker/phpcs_handler.js +++ b/worker/phpcs_handler.js @@ -39,7 +39,7 @@ define(function(require, exports, module) { "--runtime-set", "report_width", "auto", "--runtime-set", "testVersion", "5.2-", // "--runtime-set", "severity", "0", - "--tab-width=0", + // "--tab-width=4", "--standard=WordPress-Extra,WordPress-Docs,PHPCompatibilityWP" ], };