File: .prettierrc.js

package info (click to toggle)
node-watchpack 2.4.0%2B~cs2.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 412 kB
  • sloc: javascript: 3,958; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 158 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
module.exports = {
	printWidth: 80,
	useTabs: true,
	tabWidth: 2,
	overrides: [
		{
			files: "*.{json,yml}",
			options: {
				useTabs: false
			}
		}
	]
};