5e83e14637
This will be removed once we migrate to typescript
14 lines
324 B
JavaScript
14 lines
324 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
amd: true,
|
|
node: true
|
|
},
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: ['@typescript-eslint', 'prettier'],
|
|
extends: ['eslint:recommended', "plugin:@typescript-eslint/recommended"],
|
|
rules: {
|
|
"@typescript-eslint/no-var-requires": "off"
|
|
}
|
|
};
|