Initial commit: Falcon React v5.1.0 template
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
// eslint-disable-next-line no-undef
|
||||
module.exports = {
|
||||
env: {
|
||||
browser: true,
|
||||
es2021: true
|
||||
},
|
||||
extends: [
|
||||
'eslint:recommended',
|
||||
'plugin:react/recommended',
|
||||
'plugin:prettier/recommended'
|
||||
],
|
||||
parserOptions: {
|
||||
ecmaFeatures: {
|
||||
jsx: true
|
||||
},
|
||||
ecmaVersion: 12,
|
||||
sourceType: 'module'
|
||||
},
|
||||
plugins: ['react'],
|
||||
rules: {
|
||||
'react/no-unescaped-entities': 'off',
|
||||
'react/prop-types': 'error',
|
||||
'react/display-name': 'off',
|
||||
'prettier/prettier': ['error', { endOfLine: 'auto' }]
|
||||
},
|
||||
globals: {
|
||||
process: true
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user