Skip to content

Commit a5c81e6

Browse files
committed
Removing the tab-width parameter
1 parent 91794f8 commit a5c81e6

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ c9.ide.language.php.wordpress
33

44
__Name__: WordPress Coding Standards Linter for Cloud9
55

6-
__Current Version__: 1.0.0 (2018-10-10)
6+
__Current Version__: 1.0.1 (2018-10-11)
77

88
__Author__: [EP4](https://ep4.com)
99

@@ -84,6 +84,11 @@ Resources
8484
Changelog
8585
---------
8686

87+
### 1.0.1 - 2018-10-11
88+
89+
* Removing the ``tab-width=0`` parameter since the tab-width is already set by WordPress rules and it was now triggering false positives.
90+
* Fixing some typos in the README.md file.
91+
8792
### 1.0.0 - 2018-10-10
8893

8994
* Updating PHP_CodeSniffer library to version 3.3.2.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "phpcs.wpcs",
33
"description": "Displays warnings in the IDE with the help of PHP CodeSniffer configured with WordPress Coding Standards and PHPCompatibility rules.",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"author": "EP4",
66
"contributors": [
77
{

worker/phpcs_handler.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ define(function(require, exports, module) {
3939
"--runtime-set", "report_width", "auto",
4040
"--runtime-set", "testVersion", "5.2-",
4141
// "--runtime-set", "severity", "0",
42-
"--tab-width=0",
42+
// "--tab-width=4",
4343
"--standard=WordPress-Extra,WordPress-Docs,PHPCompatibilityWP"
4444
],
4545
};

0 commit comments

Comments
 (0)