diff --git a/.eslintrc b/.eslintrc index 1b0df8be3..41c33c109 100644 --- a/.eslintrc +++ b/.eslintrc @@ -27,8 +27,9 @@ ] } ], - "babel/array-bracket-spacing": 0, + "babel/array-bracket-spacing": 1, "babel/object-curly-spacing": 0, + # "babel/object-curly-spacing": [1, "always", { "objectsInObjects": false, "arraysInObjects": false }], "babel/object-shorthand": 0, "babel/arrow-parens": 0, "no-await-in-loop": 1, @@ -78,4 +79,4 @@ "param": true, "returns": true } -} \ No newline at end of file +} diff --git a/.prettierrc.js b/.prettierrc.js index 80ae81bc0..47202179a 100644 --- a/.prettierrc.js +++ b/.prettierrc.js @@ -3,11 +3,11 @@ const {esNextPaths} = require('./.vulcan/shared/pathsByLanguageVersion'); module.exports = { - bracketSpacing: false, + bracketSpacing: true, singleQuote: true, jsxBracketSameLine: true, trailingComma: 'es5', - printWidth: 80, + printWidth: 100, parser: 'babylon', overrides: [ @@ -18,4 +18,4 @@ module.exports = { }, }, ], -}; \ No newline at end of file +};