OneDrive-CloudFlare-Index/.eslintrc.js
2022-05-14 11:16:58 +08:00

22 lines
372 B
JavaScript

module.exports = {
env: {
browser: true,
es2020: true
},
extends: ['standard'],
parserOptions: {
ecmaVersion: 11,
sourceType: 'module'
},
rules: {
'space-before-function-paren': ['error', 'never']
},
globals: {
TransformStream: true,
REFRESH_TOKEN: true,
CLIENT_SECRET: true,
BUCKET: true,
AUTH_PASSWORD: true
}
}