Skip to content

Commit

Permalink
Removing the tab-width parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
davelavoie committed Oct 11, 2018
1 parent 91794f8 commit a5c81e6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": [
{
Expand Down
2 changes: 1 addition & 1 deletion worker/phpcs_handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -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"
],
};
Expand Down

0 comments on commit a5c81e6

Please sign in to comment.