mirror of
https://github.com/BradNut/graphbrainz
synced 2025-09-08 17:40:32 +00:00
20 lines
317 B
JavaScript
20 lines
317 B
JavaScript
module.exports = {
|
|
extends: ['standard', 'prettier', 'prettier/standard'],
|
|
env: {
|
|
es6: true,
|
|
node: true
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 6
|
|
},
|
|
plugins: ['prettier'],
|
|
rules: {
|
|
'prettier/prettier': [
|
|
'error',
|
|
{
|
|
singleQuote: true,
|
|
semi: false
|
|
}
|
|
]
|
|
}
|
|
}
|