filesafe/src/js/.eslintrc.js

21 lines
287 B
JavaScript
Raw Normal View History

module.exports = {
2020-10-30 15:54:02 +00:00
root: true,
parserOptions: {
ecmaVersion: 7, // 2016
sourceType: 'script'
},
2020-10-30 15:54:02 +00:00
env: {
browser: true
},
2020-10-30 15:54:02 +00:00
extends: [
'standard',
'plugin:compat/recommended'
],
2020-10-30 15:54:02 +00:00
rules: {
'object-shorthand': [
'error',
'always'
]
}
}