/** * Pre-render (https://github.com/kriasoft/pre-render) * * Copyright © 2017-present Kriasoft. All rights reserved. * * This source code is licensed under the MIT license found in the * LICENSE.txt file in the root directory of this source tree. */ // http://eslint.org/docs/user-guide/configuring // https://github.com/prettier/prettier#eslint module.exports = { extends: ['airbnb-base', 'prettier'], plugins: ['prettier'], rules: { 'prettier/prettier': [ 'error', { singleQuote: true, trailingComma: 'es5', }, ], }, };