mirror of
https://github.com/artegoser/pimi-launcher.git
synced 2024-11-06 04:23:58 +03:00
23 lines
374 B
JavaScript
23 lines
374 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
browser: true,
|
||
|
commonjs: true,
|
||
|
es6: true,
|
||
|
node: true
|
||
|
},
|
||
|
parserOptions: {
|
||
|
ecmaFeatures: {
|
||
|
jsx: true
|
||
|
},
|
||
|
sourceType: 'module',
|
||
|
ecmaVersion: 2021
|
||
|
},
|
||
|
extends: [
|
||
|
'eslint:recommended',
|
||
|
'plugin:react/recommended',
|
||
|
'plugin:react/jsx-runtime',
|
||
|
'plugin:prettier/recommended'
|
||
|
]
|
||
|
}
|