Git Product home page Git Product logo

Comments (11)

elvishp2006 avatar elvishp2006 commented on June 9, 2024 2

I got my phpcs working with the following:

  • Replaced the -it arg for -i arg
    /usr/bin/php
#!/bin/bash

docker exec \
    -i \
    -u $(id -u) \
    -w "$PWD" \
    php7 \
    php "$@"

But it yet wont work with a custom "phpSniffer.standard": "./phpcs.xml" configuration.
I'm getting the following output on console:

[Extension Host] �[32mE�[0m 1 / 1 (100%)


{"totals":{"errors":1,"warnings":0,"fixable":1},"files":{"STDIN":{"errors":1,"warnings":0,"messages":[{"message":"Expected 1 spaces after opening bracket; 0 found","source":"PEAR.Functions.FunctionCallSignature.SpaceAfterOpenBracket","severity":5,"fixable":true,"type":"ERROR","line":27,"column":16}]}}}

from vscode-php-sniffer.

elvishp2006 avatar elvishp2006 commented on June 9, 2024 1

I'm getting some errors when I save my code:

[Extension Host] the input device is not a TTY
[Extension Host] SyntaxError: Unexpected end of JSON input

from vscode-php-sniffer.

wongjn avatar wongjn commented on June 9, 2024

So you cannot run phpcs command directly @elvishp2006?

from vscode-php-sniffer.

elvishp2006 avatar elvishp2006 commented on June 9, 2024

If I run the command ./vendor/bin/phpcs (on terminal) it's still work fine, but the extension don't recognize that I have it installed, and I already changed the config to:

"phpSniffer.executablesFolder": "./vendor/bin/phpcs"

from vscode-php-sniffer.

wongjn avatar wongjn commented on June 9, 2024

Try ./vendor/bin/ exactly instead; the setting is for the folder that both phpcs and phpcbf are both in.

from vscode-php-sniffer.

elvishp2006 avatar elvishp2006 commented on June 9, 2024

I tried it now, not worked yet, the extension output a log somewhere?

from vscode-php-sniffer.

wongjn avatar wongjn commented on June 9, 2024

Yes, open devtools: Help > Toggle Developer Tools

from vscode-php-sniffer.

wongjn avatar wongjn commented on June 9, 2024

I've already solved [Extension Host] SyntaxError: Unexpected end of JSON input in dev but it also means that phpcs command has executed.

Not sure what [Extension Host] the input device is not a TTY is referring to. The extension creates a process and feeds in the file content as stdin - could this be incompatible with Docker?
The error about TTY may also to do with Docker CLI interactions here and here, etc?

from vscode-php-sniffer.

elvishp2006 avatar elvishp2006 commented on June 9, 2024

I discovered what was causing it, was the following lines at my phpcs.xml:

	<arg value="sp"/> <!-- Show sniff and progress -->
	<arg name="colors"/> <!-- Show results with colors -->

There is a way to contorn it with these options?

from vscode-php-sniffer.

elvishp2006 avatar elvishp2006 commented on June 9, 2024

The extension is not following these configs:

	<!-- What to scan -->
	<file>.</file>
	<!-- Ignoring Files and Folders:
		https://github.com/squizlabs/PHP_CodeSniffer/wiki/Advanced-Usage#ignoring-files-and-folders -->
	<exclude-pattern>api-reference/</exclude-pattern>
	<exclude-pattern>dist/</exclude-pattern>
	<exclude-pattern>node_modules/</exclude-pattern>
	<exclude-pattern>resources/</exclude-pattern>
	<exclude-pattern>vendor/</exclude-pattern>
	<!-- Scrutinizer dependency -->
	<exclude-pattern>wordpress/</exclude-pattern>

It's pointing errors at files inside vendor folder, but it's on exclude-pattern tag.

from vscode-php-sniffer.

wongjn avatar wongjn commented on June 9, 2024

Thank you. I'm glad we could get to the cause of your issues with this extension. These two points have been moved to separate issues.

from vscode-php-sniffer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.