mirror of
https://github.com/artegoser/pimi-launcher.git
synced 2024-11-05 12:03:58 +03:00
22 lines
374 B
JavaScript
22 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'
|
|
]
|
|
}
|