disable printWidth on prettier

The short answer is no, you cannot disable it entirely. There are, however, a few workarounds, but they have caveats. To quote an answer from this issue on github: https://github.com/prettier/prettier/issues/3468. printWidth is not a rule but an input into the algorithm they use to generate their output. Meaning, it is required to be there. One … Read more

what is the difference between installing prettier as a NPM package and installing prettier extension in VS Code

Functionally there is no difference, they will both work. The VS Code extension Prettier (not Pretty Formatter, that’s different) includes a recent copy of the prettier npm package inside it, which it will use by default if you don’t have the package installed via npm in your repo. See the extension page’s section on Prettier … Read more

How do you get rid of these SASS linting errors when using Tailwind CSS?

Solution for both .css and .scss At the root level of your project, update or create a directory, .vscode, with a file, settings.json: Add the following to file .vscode/settings.json: { “css.validate”: false, “less.validate”: false, “scss.validate”: false } Install the vscode-stylelint extension Install stylelint-config-standard: npm i stylelint-config-standard -D Create a stylelint.config.js file at the root level … Read more

How to turn off the prettier trailing comma in VS Code?

Since you are working on the Tour of Heroes project, it is maybe the .editorconfig file there that introduces conflicts with your VSCode Prettier settings. Try adding the following .prettierrc file at the root of your project : { “trailingComma”: “none” } The .prettierrc file has the highest priority over any setting, so it should … Read more