Commit ce47dac9 authored by Julien Fontanet's avatar Julien Fontanet

chore(.eslintrc.js): format with prettier

parent 54004ca4
module.exports = {
"env": {
"node": true
env: {
node: true,
},
"extends": "eslint:recommended",
"globals": {
"Promise": true,
extends: 'eslint:recommended',
globals: {
Promise: true,
},
"parserOptions": {
"ecmaVersion": 5
parserOptions: {
ecmaVersion: 5,
},
"rules": {
"indent": "off",
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single",
rules: {
indent: 'off',
'linebreak-style': ['error', 'unix'],
quotes: [
'error',
'single',
{
"avoidEscape": true
}
avoidEscape: true,
},
],
"semi": [
"error",
"always"
]
}
semi: ['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