mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
20 lines
466 B
JavaScript
20 lines
466 B
JavaScript
'use strict';
|
|
|
|
module.exports = function defaultOptions () {
|
|
return {
|
|
lineDiffThreshold: 5,
|
|
maxDepth: 1,
|
|
outputOffset: 2,
|
|
anonymous: 'Object',
|
|
circular: '#@Circular#',
|
|
lineSeparator: '\n',
|
|
ambiguousEastAsianCharWidth: 2,
|
|
renderers: [
|
|
'./built-in/file',
|
|
'./built-in/assertion',
|
|
'./built-in/diagram',
|
|
'./built-in/binary-expression'
|
|
]
|
|
};
|
|
};
|