-
-
Notifications
You must be signed in to change notification settings - Fork 9
Closed
prettier/prettier
#17665Labels
bugSomething isn't workingSomething isn't working
Description
I upgraded to Prettier 3.6.0, and when running it with prettier . --check --experimental-cli
I initially got this warning for vite.config.js
, but changed it, and now I get the same warning for stylelint.config.js
.
- stylelint.config.js(node:87032) Warning: File descriptor 39 closed but not opened in unmanaged mode
(Use `node --trace-warnings ...` to show where the warning was created)
Checking formatting...
All matched files use Prettier code style!
Example of my stylelint.config.js
:
/** @type { import('stylelint').Config } */
const config = {
extends: ['stylelint-config-idiomatic-order', 'stylelint-config-standard'],
ignorePath: '.gitignore',
overrides: [
{
customSyntax: 'postcss-styled-syntax',
files: ['**/*.js', '**/*.jsx'],
},
],
rules: {
'declaration-block-no-redundant-longhand-properties': [
true,
{
ignoreLonghands: ['top', 'right', 'bottom', 'left'],
},
],
},
};
export default config;
rakleed and Mathias-S
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working