🚨(frontend) ignore styled-system source while linting
@manuhabitela configured panda css to manage project styling. Panda codegen generates a new folder, 'styled-system' which was not ingored by Eslint, resulting in ~40 Eslint errors. Adapted Eslint configurations to ignore this path.
This commit is contained in:
committed by
aleb_the_flash
parent
d7b87ef6c1
commit
076107dd87
@@ -8,7 +8,7 @@ module.exports = {
|
||||
'plugin:@tanstack/eslint-plugin-query/recommended',
|
||||
'plugin:jsx-a11y/recommended',
|
||||
],
|
||||
ignorePatterns: ['dist', '.eslintrc.cjs'],
|
||||
ignorePatterns: ['dist', '.eslintrc.cjs', 'styled-system'],
|
||||
parser: '@typescript-eslint/parser',
|
||||
plugins: ['react-refresh'],
|
||||
rules: {
|
||||
|
||||
Reference in New Issue
Block a user