We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4c7e642 + c551a73 commit bef2d2bCopy full SHA for bef2d2b
.github/workflows/php.yml
@@ -38,4 +38,6 @@ jobs:
38
run: composer run-script test
39
40
- name: Run linter to check code style
41
- run: composer run-script check-style
+ uses: chekalsky/phpcs-action@v1
42
+ with:
43
+ enable_warnings: true
.phpcs.xml
@@ -0,0 +1,9 @@
1
+<?xml version="1.0"?>
2
+<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="PHP_CodeSniffer" xsi:noNamespaceSchemaLocation="phpcs.xsd">
3
+ <description>Coding standard configuration for the Bigcommerce V3 API Client.</description>
4
+
5
+ <file>src</file>
6
+ <file>tests</file>
7
8
+ <rule ref="PSR12"/>
9
+</ruleset>
0 commit comments