source: frontend/node_modules/tailwindcss/prettier.config.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 446 bytes
Line 
1module.exports = {
2 // These settings are duplicated in .editorconfig:
3 tabWidth: 2, // indent_size = 2
4 useTabs: false, // indent_style = space
5 endOfLine: 'lf', // end_of_line = lf
6 semi: false, // default: true
7 singleQuote: true, // default: false
8 printWidth: 100, // default: 80
9 trailingComma: 'es5',
10 bracketSpacing: true,
11 overrides: [
12 {
13 files: '*.js',
14 options: {
15 parser: 'flow',
16 },
17 },
18 ],
19}
Note: See TracBrowser for help on using the repository browser.