mirror of
https://github.com/BillyOutlast/Gazelle-Porn.git
synced 2026-02-04 02:51:19 +01:00
18 lines
347 B
JavaScript
18 lines
347 B
JavaScript
module.exports = {
|
|
extends: ['standard', 'prettier', 'plugin:react/recommended', 'plugin:react/jsx-runtime'],
|
|
plugins: ['jest'],
|
|
env: {
|
|
'jest/globals': true,
|
|
},
|
|
globals: {
|
|
$: true,
|
|
readFixture: true,
|
|
Mousetrap: true,
|
|
translation: true,
|
|
},
|
|
rules: {
|
|
'dot-notation': 'off',
|
|
'react/prop-types': 'off',
|
|
},
|
|
}
|