mirror of
https://github.com/teamhanko/hanko.git
synced 2025-10-27 22:27:23 +08:00
25 lines
468 B
JavaScript
25 lines
468 B
JavaScript
module.exports = {
|
|
'env': {
|
|
'browser': true,
|
|
'es2021': true,
|
|
'node': true,
|
|
},
|
|
'extends': [
|
|
'eslint:recommended',
|
|
'google',
|
|
'preact',
|
|
'plugin:promise/recommended',
|
|
'plugin:prettier/recommended',
|
|
],
|
|
'parser': '@typescript-eslint/parser',
|
|
'parserOptions': {
|
|
'ecmaVersion': 'latest',
|
|
'sourceType': 'module',
|
|
"project": "tsconfig.json",
|
|
"tsconfigRootDir": ".",
|
|
},
|
|
'plugins': [
|
|
'@typescript-eslint'
|
|
]
|
|
};
|