This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
website/.eslintrc.js

13 lines
183 B
JavaScript
Raw Permalink Normal View History

2021-04-24 16:37:12 +00:00
module.exports = {
extends: ['next'],
2021-04-24 16:37:12 +00:00
rules: {
'react/react-in-jsx-scope': 0,
'react/jsx-pascal-case': [
'warn',
{
ignore: [],
},
],
},
};