mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-02-22 17:44:20 -08:00
31 lines
476 B
JavaScript
31 lines
476 B
JavaScript
|
module.exports = {
|
||
|
'env': {
|
||
|
'browser': true,
|
||
|
'es2021': true,
|
||
|
'node': true,
|
||
|
},
|
||
|
'extends': [
|
||
|
'plugin:react/recommended',
|
||
|
'google',
|
||
|
],
|
||
|
'parser': '@typescript-eslint/parser',
|
||
|
'parserOptions': {
|
||
|
'ecmaFeatures': {
|
||
|
'jsx': true,
|
||
|
},
|
||
|
'ecmaVersion': 12,
|
||
|
'sourceType': 'module',
|
||
|
},
|
||
|
'plugins': [
|
||
|
'react',
|
||
|
'@typescript-eslint',
|
||
|
],
|
||
|
'rules': {
|
||
|
},
|
||
|
'settings': {
|
||
|
'react': {
|
||
|
'version': 'detect',
|
||
|
},
|
||
|
},
|
||
|
};
|