e534a911f3
Prettier v2 has the following breaking changes: * enforces spaces between `function` and params * enforces trailing commas by default
10 lines
163 B
JavaScript
10 lines
163 B
JavaScript
module.exports = {
|
|
'check-coverage': true,
|
|
branches: 100,
|
|
lines: 100,
|
|
functions: 100,
|
|
statements: 100,
|
|
exclude: ['**/spec/**'],
|
|
reporter: 'html',
|
|
};
|