You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 24, 2025. It is now read-only.
// .eslintrc.jsmodule.exports={plugins: ["dprint-integration"],rules: {"dprint-integration/dprint": ["error",// Global Config (will pass to the dprint formatter directly): Available at https://dprint.dev/config/{lineWidth: 80,},// Plugin Specific Config (will pass to the dprint plugins): Available at https://dprint.dev/plugins/{typescript: {// This applies to both JavaScript & TypeScript"quoteStyle": "preferSingle","binaryExpression.operatorPosition": "sameLine",},json: {},toml: {},markdown: {},dockerfile: {},malva: {},markup: {},},],},};
If you want, you can use dprint.json:
// .eslintrc.jsmodule.exports={plugins: ["dprint-integration"],rules: {"dprint-integration/dprint": ["error",// Global Config (will pass to the dprint formatter directly): Available at https://dprint.dev/config/{// A special option to use dprint.jsonuseDprintJson: true,// Or a specified path to dprint.json// useDprintJson: "path/to/dprint.json",},// Plugin Specific Config (will pass to the dprint plugins): Available at https://dprint.dev/plugins/{},],},};