source: imaps-frontend/.eslintrc.cjs

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 566 bytes
Line 
1module.exports = {
2 root: true,
3 env: { browser: true, es2020: true },
4 extends: [
5 'eslint:recommended',
6 'plugin:react/recommended',
7 'plugin:react/jsx-runtime',
8 'plugin:react-hooks/recommended',
9 ],
10 ignorePatterns: ['dist', '.eslintrc.cjs'],
11 parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
12 settings: { react: { version: '18.2' } },
13 plugins: ['react-refresh'],
14 rules: {
15 'react/jsx-no-target-blank': 'off',
16 'react-refresh/only-export-components': [
17 'warn',
18 { allowConstantExport: true },
19 ],
20 },
21}
Note: See TracBrowser for help on using the repository browser.