mirror of
https://github.com/franjsco/covid19-campania
synced 2025-01-20 17:58:21 +01:00
28 lines
452 B
JavaScript
28 lines
452 B
JavaScript
|
module.exports = {
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es6: true,
|
||
|
},
|
||
|
extends: [
|
||
|
'plugin:react/recommended',
|
||
|
'airbnb',
|
||
|
],
|
||
|
globals: {
|
||
|
Atomics: 'readonly',
|
||
|
SharedArrayBuffer: 'readonly',
|
||
|
},
|
||
|
parserOptions: {
|
||
|
ecmaFeatures: {
|
||
|
jsx: true,
|
||
|
},
|
||
|
ecmaVersion: 2018,
|
||
|
sourceType: 'module',
|
||
|
},
|
||
|
plugins: [
|
||
|
'react',
|
||
|
],
|
||
|
rules: {
|
||
|
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
|
||
|
},
|
||
|
};
|