mirror of
https://github.com/liriliri/eruda.git
synced 2026-05-20 08:47:20 +08:00
22 lines
303 B
JavaScript
22 lines
303 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
commonjs: true,
|
|
es6: true,
|
|
worker: true
|
|
},
|
|
extends: 'eslint:recommended',
|
|
parserOptions: {
|
|
sourceType: 'module'
|
|
},
|
|
globals: {
|
|
VERSION: true,
|
|
ENV: true
|
|
},
|
|
rules: {
|
|
quotes: [
|
|
'error',
|
|
'single'
|
|
]
|
|
}
|
|
} |