mirror of
https://github.com/vale981/Vulcan
synced 2025-03-04 17:21:37 -05:00
21 lines
364 B
JavaScript
21 lines
364 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const {esNextPaths} = require('./.vulcan/shared/pathsByLanguageVersion');
|
||
|
|
||
|
module.exports = {
|
||
|
bracketSpacing: false,
|
||
|
singleQuote: true,
|
||
|
jsxBracketSameLine: true,
|
||
|
trailingComma: 'es5',
|
||
|
printWidth: 80,
|
||
|
parser: 'babylon',
|
||
|
|
||
|
overrides: [
|
||
|
{
|
||
|
files: esNextPaths,
|
||
|
options: {
|
||
|
trailingComma: 'all',
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|