-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lint #4
Comments
Checked editorconfig to set the rules |
Added |
Tested the |
Checked prettier options to set the rules |
Tested the |
Fix |
Remove |
Add native folders to the |
Create |
Fix all |
Run this command npm init @eslint/config@latest To initialize |
Add to {
settings: {
react: {
version: 'detect',
}
}
} to fix this error Warning: React version not specified in eslint-plugin-react settings. See https://github.com/jsx-eslint/eslint-plugin-react#configuration . |
Add to {
ignores: ['*.config.*'],
} To ignore files like |
You can test your |
You can test your |
I read this article to decide what it is the best approach to integrated |
Add and config |
Test |
Follow this article to set |
Add and config like this comment and eslint tutorial |
Test |
After reading the previous article I added these rules {
'react/jsx-filename-extension': ['error', { extensions: ['.tsx'] }],
'@typescript-eslint/no-shadow': ['error'],
'@typescript-eslint/explicit-function-return-type': ['error', { allowExpressions: true }],
} |
Test this rules |
Found this library for project architecture |
Add |
implement sort rules {
rules: {
'perfectionist/sort-imports': [
'error',
{
type: 'natural',
order: 'asc',
internalPattern: ['^(@|/)+'],
groups: [
['external', 'builtin'],
['parent', 'sibling', 'index'],
'internal',
'object',
['type', 'internal-type', 'parent-type', 'sibling-type', 'index-type'],
'unknown',
],
},
],
'perfectionist/sort-array-includes': [
'error',
{
type: 'natural',
},
],
'perfectionist/sort-classes': [
'error',
{
type: 'natural',
groups: [
'index-signature',
'static-block',
['private-static-property', 'private-static-accessor-property'],
['protected-static-property', 'protected-static-accessor-property'],
['static-property', 'static-accessor-property'],
['private-property', 'private-accessor-property'],
['protected-property', 'protected-accessor-property'],
['property', 'accessor-property'],
['private-static-get-method', 'private-static-set-method'],
['protected-static-get-method', 'protected-static-set-method'],
['static-get-method', 'static-set-method'],
['private-get-method', 'private-set-method'],
['protected-get-method', 'protected-set-method'],
['public-get-method', 'public-set-method'],
'constructor',
['private-static-method', 'private-static-function-property'],
['protected-static-method', 'protected-static-function-property'],
['static-method', 'static-function-property'],
['private-method', 'private-function-property'],
['protected-method', 'protected-function-property'],
['method', 'function-property'],
'unknown',
],
},
],
'perfectionist/sort-enums': [
'error',
{
type: 'natural',
},
],
'perfectionist/sort-exports': [
'error',
{
type: 'natural',
},
],
'perfectionist/sort-heritage-clauses': [
'error',
{
type: 'natural',
},
],
'perfectionist/sort-interfaces': [
'error',
{
type: 'natural',
},
],
'perfectionist/sort-intersection-types': [
'error',
{
type: 'natural',
},
],
'perfectionist/sort-jsx-props': [
'error',
{
type: 'natural',
groups: ['multiline', 'unknown', 'shorthand', 'callback'],
customGroups: {
callback: '^on.+',
},
},
],
'perfectionist/sort-maps': [
'error',
{
type: 'natural',
},
],
'perfectionist/sort-modules': [
'error',
{
type: 'natural',
groups: [
'declare-enum',
'enum',
'export-enum',
['declare-interface', 'declare-type'],
['export-interface', 'export-type'],
['interface', 'type'],
'declare-function',
'function',
'export-function',
'declare-class',
'class',
'export-class',
],
},
],
'perfectionist/sort-named-exports': [
'error',
{
type: 'natural',
},
],
'perfectionist/sort-named-imports': [
'error',
{
type: 'natural',
},
],
'perfectionist/sort-object-types': [
'error',
{
type: 'natural',
},
],
'perfectionist/sort-objects': [
'error',
{
type: 'natural',
groups: ['id', 'unknown'],
customGroups: {
id: '^id$',
},
},
],
'perfectionist/sort-sets': [
'error',
{
type: 'natural',
},
],
'perfectionist/sort-switch-case': [
'error',
{
type: 'natural',
},
],
'perfectionist/sort-union-types': [
'error',
{
type: 'natural',
},
],
'perfectionist/sort-variable-declarations': [
'error',
{
type: 'natural',
},
],
} |
Add |
Disable this rules {
'react-native/sort-styles': 'off',
'react-native/no-raw-text': 'off',
} |
Create eslint:check and eslint:fix scripts |
Fix all |
Refactoring the |
Use conventionalcommits to lint the commit message |
Add gitmoji-commit-workflow to lint the commit |
Install |
Test
|
Install |
Remove all |
Create |
create |
Add
|
Create action to run |
This issue focuses on setting up and configuring linting tools for the project to ensure consistent code style, code quality, and security practices. The tasks will include the following:
Code Style:
Quality Style:
eslint-plugin-react-hooks
eslint-plugin-react-refresh
eslint-plugin-perfectionist
eslint-plugin-react-native
Commit:
type(scope): description
).Continue integrations
pre-commit
stagecommit-msg
commitizen
when doing the commandgit commit
lint
action to check for code stylelint
action to check for code qualitylint
action to check for commitImplementing these linting tools will improve code consistency, maintainability, and security across the project.
The text was updated successfully, but these errors were encountered: