We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently this project uses the XO linter which is a wrapper to ESLint, but currently the configuration is broken due to the line:
ignores: ['!.*.{cjs, js}'],
This makes the XO includes its own configuration file (.xo-config.cjs) but I will ignore other files (see xojs/xo#673).
.xo-config.cjs
We would still use Prettier as it is the formatter for non Javascript files.
Move the .xo-config.cjs and .prettierrc.cjs configuration to package.json as it is the practice applied in the XO repo.
.prettierrc.cjs
package.json
The text was updated successfully, but these errors were encountered:
95b0f29
yvvki
No branches or pull requests
Currently this project uses the XO linter which is a wrapper to ESLint, but currently the configuration is broken due to the line:
This makes the XO includes its own configuration file (
.xo-config.cjs
) but I will ignore other files (see xojs/xo#673).We would still use Prettier as it is the formatter for non Javascript files.
Solution
Move the
.xo-config.cjs
and.prettierrc.cjs
configuration topackage.json
as it is the practice applied in the XO repo.The text was updated successfully, but these errors were encountered: