mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
22 lines
365 B
JavaScript
22 lines
365 B
JavaScript
'use strict';
|
|
|
|
const {esNextPaths} = require('./scripts/shared/pathsByLanguageVersion');
|
|
|
|
module.exports = {
|
|
bracketSpacing: false,
|
|
singleQuote: true,
|
|
jsxBracketSameLine: true,
|
|
trailingComma: 'es5',
|
|
printWidth: 80,
|
|
parser: 'babylon',
|
|
|
|
overrides: [
|
|
{
|
|
files: esNextPaths,
|
|
options: {
|
|
trailingComma: 'all',
|
|
},
|
|
},
|
|
],
|
|
};
|