summaryrefslogtreecommitdiffstats
path: root/.prettierrc.js
blob: 87a94b7bf466640546bfe37ce2a2314a5c766948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module.exports = {
    singleQuote: true,
    printWidth: 120,
    tabWidth: 4,
    endOfLine: 'auto',
    trailingComma: 'all',
    overrides: [
        {
            files: ['*.yml', '*.yaml'],
            options: {
                tabWidth: 2
            }
        }
    ]
};