UNPKG

inventoresed

Version:

Z-Wave driver written entirely in JavaScript/TypeScript

29 lines (26 loc) 418 B
module.exports = { semi: true, trailingComma: "all", singleQuote: false, printWidth: 80, useTabs: true, tabWidth: 4, endOfLine: "lf", plugins: [require("prettier-plugin-organize-imports")], overrides: [ { files: "packages/config/**/*.json", options: { printWidth: 120, }, }, { files: "*.yml", options: { useTabs: false, tabWidth: 2, singleQuote: true, }, }, ], };