PIbd-21_Danilov_V.V._Intern.../Lab4/.eslintrc.cjs

27 lines
710 B
JavaScript
Raw Permalink Normal View History

2024-01-09 05:30:48 +04:00
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'airbnb-base',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parserOptions: { ecmaVersion: 12, sourceType: 'module' },
settings: { react: { version: '18.2' } },
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
'indent': 'off',
'no-console': 'off',
'arrow-body-style': 'off',
'implicit-arrow-linebreak': 'off',
"linebreak-style": [0 ,"error", "windows"],
//'linebreak-style': 'off',
},
}