Commit ce47dac9 authored by Julien Fontanet's avatar Julien Fontanet

chore(.eslintrc.js): format with prettier

parent 54004ca4
module.exports = { module.exports = {
"env": { env: {
"node": true node: true,
}, },
"extends": "eslint:recommended", extends: 'eslint:recommended',
"globals": { globals: {
"Promise": true, Promise: true,
}, },
"parserOptions": { parserOptions: {
"ecmaVersion": 5 ecmaVersion: 5,
}, },
"rules": { rules: {
"indent": "off", indent: 'off',
"linebreak-style": [ 'linebreak-style': ['error', 'unix'],
"error", quotes: [
"unix" 'error',
], 'single',
"quotes": [
"error",
"single",
{ {
"avoidEscape": true avoidEscape: true,
} },
], ],
"semi": [ semi: ['error', 'always'],
"error", },
"always"
]
}
}; };
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment