filesafe/src/js/.eslintrc.js

23 lines
324 B
JavaScript
Raw Normal View History

module.exports = {
2020-10-30 15:54:02 +00:00
root: true,
parserOptions: {
sourceType: 'script'
},
2020-10-30 15:54:02 +00:00
env: {
2022-06-08 14:53:43 +00:00
browser: true,
es2016: true
},
2020-10-30 15:54:02 +00:00
extends: [
'standard',
'plugin:compat/recommended'
],
2020-10-30 15:54:02 +00:00
rules: {
'no-undefined': 'error',
'no-void': 0,
2020-10-30 15:54:02 +00:00
'object-shorthand': [
'error',
'always'
]
}
}