question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Is your feature request related to a problem? Please describe.

Microsoft Edge Tools keeps complaining about 'input[type=datetime-local]' is not supported by Firefox < 93.

Describe the solution you’d like:

Is there a way to disable that check/test?

Describe alternatives you’ve considered:

None yet, but there are online HTML validators and probably linters as well.

Additional context:

Tools like PyLint can be configured to skip certain tests.

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:8 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
codepo8commented, Sep 9, 2022

2.1.1 is out - update and filter away:

hint-fixing

1reaction
CTimmermancommented, Sep 7, 2022

.browserslistrc from here gives me Unable to start webhint. Ensure you are using the latest version of the `hint` package. and

Found hint at c:\Users\C\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\index.js
AnalyzerError: Invalid configuration. Unknown browser query `{`. Maybe you are using old Browserslist or made typo in query..
    at Object.create [as createAnalyzer] (c:\Users\C\AppData\Roaming\Code\User\globalStorage\ms-edgedevtools.vscode-edge-devtools\node_modules\hint\dist\src\lib\analyzer.js:63:19)
    at t.Analyzer.initWebhint (c:\Users\C\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.0\node_modules\vscode-webhint\dist\src\server.js:1:561)
    at async t.Analyzer.initWebhint (c:\Users\C\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.0\node_modules\vscode-webhint\dist\src\server.js:1:612)
    at async t.Analyzer.validateTextDocument (c:\Users\C\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.0\node_modules\vscode-webhint\dist\src\server.js:1:1083)
    at async c:\Users\C\.vscode\extensions\ms-edgedevtools.vscode-edge-devtools-2.1.0\node_modules\vscode-webhint\dist\src\server.js:1:139563 {
  status: 'ConfigurationError'
}
Checking if shared version of "hint" needs updated
npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead.
npm verb cli C:\Program Files\nodejs\node.exe C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js
npm info using npm@8.11.0
npm info using node@v16.16.0
npm timing npm:load:whichnode Completed in 1ms
[...]
npm timing reify Completed in 89980ms

added 25 packages, removed 56 packages, changed 112 packages, and audited 568 packages in 2m

75 packages are looking for funding
  run `npm fund` for details

66 moderate severity vulnerabilities

To address issues that do not require attention, run:
  npm audit fix

Some issues need review, and may require choosing
a different dependency.

Run `npm audit` for details.
npm timing command:install Completed in 90116ms
npm verb exit 0
npm timing npm Completed in 90945ms
npm info ok 

The same content in .hintrc does seem to work, except it stopped complaining about missing label tags for inputs and viewport scale <1 as well, only giving me problems about the .vscode/launch.json config i just had it generate to see if it did anything at all:

{
	"configurations": [
		{
			"type": "pwa-msedge",
...

=> Please use type msedge instead

package.json does work with JSON config, except not the one above: 'input[type=datetime-local]' is not supported by Firefox < 93. Turns out the browser name must be lowercase, as this package.json works:

{
	"browserslist": "defaults, firefox > 100"
}

Then again, my system must’ve been laggy or i forgot a save as now it works with the originally suggested content as well.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Maven Surefire Plugin – Skipping Tests
To skip running the tests for a particular project, set the skipTests property to true. ... You can also skip the tests via...
Read more >
Maven skip tests - Stack Overflow
As you noted, -Dmaven.test.skip=true skips compiling the tests. More to the point, it skips building the test artifacts. A common practice for large ......
Read more >
Skipping Tests with Maven - Baeldung
In this quick tutorial, we'll explore all the possible commands and options to skip tests using Maven. 2. Maven Lifecycle.
Read more >
Maven - Skip Tests - javabydeveloper Java Tutorials
In this quick guide, we discuss several use cases on how to skip unit test cases using maven mvn command when you are...
Read more >
Maven - How to skip unit test - Mkyong.com
In this article, we will show you a few ways to skip the unit test. 1. maven.test.skip=true. 1.1 To skip unit tests, uses...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found