eslint-config-mt
Version:
21 lines (20 loc) • 363 B
JavaScript
module.exports = {
parserOptions: {
ecmaFeatures: {
globalReturn: true,
impliedStrict: true,
},
requireConfigFile: false,
allowImportExportEverywhere: false,
},
env: {
browser: true,
},
globals: {
__CLIENT__: true,
__SERVER__: true,
__DEVELOPMENT__: true,
__DEBUG__: true,
__DEVTOOLS__: true,
},
};