apply prettier formating

This commit is contained in:
Prettier
2018-07-07 01:17:37 +04:00
committed by Aleksey Gurianov
parent 5d1201351a
commit 2df3aa01d4
38 changed files with 215 additions and 190 deletions
+9 -10
View File
@@ -1,15 +1,14 @@
module.exports = {
presets: [
['env', {
targets: {
browsers: ['> 1%', 'android >= 4.4.4', 'ios >= 9', 'IE >= 11']
[
'env',
{
targets: {
browsers: ['> 1%', 'android >= 4.4.4', 'ios >= 9', 'IE >= 11'],
},
useBuiltIns: true,
},
useBuiltIns: true,
}],
],
plugins: [
'syntax-dynamic-import',
'transform-object-rest-spread',
['transform-react-jsx', { 'pragma': 'h' }]
],
],
plugins: ['syntax-dynamic-import', 'transform-object-rest-spread', ['transform-react-jsx', { pragma: 'h' }]],
};