IP_3sem/4_laba_IP_project/.eslintrc.cjs
2023-12-21 18:42:34 +04:00

27 lines
696 B
JavaScript

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': 'off',
'import/no-extraneous-dependencies': 'off'
},
}