import { type Config } from "prettier"; | |
const config: Config = { | |
// use 4 because it's Rustfmt's default | |
// https://rust-lang.github.io/rustfmt/?version=v1.4.38&search=#%5C34%20%5C%20%5C(default%5C)%5C%3A | |
tabWidth: 4, | |
// use 100 because it's Rustfmt's default | |
// https://rust-lang.github.io/rustfmt/?version=v1.4.38&search=#max_width | |
printWidth: 100, | |
}; | |
export default config; |