mlightcad
Version:
A highly customizable standalone view cube addon for three.js
35 lines • 562 B
JavaScript
module.exports = {
semi: false,
tabWidth: 2,
singleQuote: true,
printWidth: 80,
endOfLine: 'auto',
trailingComma: 'none',
arrowParens: 'avoid',
overrides: [
{
files: '*.ts',
options: {
parser: 'typescript'
}
},
{
files: '*.js',
options: {
parser: 'babel'
}
},
{
files: '*.md',
options: {
parser: 'markdown'
}
},
{
files: '*.json',
options: {
parser: 'json-stringify'
}
}
]
}