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