Skip to content
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

Closed
4 tasks done
Tracked by #1
IsaacIsrael opened this issue Jan 10, 2025 · 49 comments · Fixed by #13, #14, #16, #18 or #17
Closed
4 tasks done
Tracked by #1

Lint #4

IsaacIsrael opened this issue Jan 10, 2025 · 49 comments · Fixed by #13, #14, #16, #18 or #17
Labels
documentation Improvements or additions to documentation

Comments

@IsaacIsrael
Copy link
Owner

IsaacIsrael commented Jan 10, 2025

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:

    • Set up and configure Editor config for automatic when writing.
    • Set up and configure Prettier for automatic formatting after saving.
    • Edit and customize the Prettier and Editor config configuration to follow the project's style guidelines.
  • Quality Style:

  • Commit:

    • Set up and configure Commitlint to enforce conventional commit messages.
    • Ensure commit messages follow a consistent and structured format (e.g., type(scope): description).
  • Continue integrations

    • add lint for code style and quality at the pre-commit stage
    • add lint for commit at commit-msg
    • Execute the commitizen when doing the command git commit
    • create lint action to check for code style
    • add for lint action to check for code quality
    • add for lint action to check for commit

Implementing these linting tools will improve code consistency, maintainability, and security across the project.

@IsaacIsrael
Copy link
Owner Author

Checked editorconfig to set the rules

@IsaacIsrael
Copy link
Owner Author

IsaacIsrael commented Jan 11, 2025

Added .vscode settings.json to the project and also extensions.json

@IsaacIsrael
Copy link
Owner Author

Tested the editconfig

@IsaacIsrael
Copy link
Owner Author

IsaacIsrael commented Jan 11, 2025

Checked prettier options to set the rules

@IsaacIsrael
Copy link
Owner Author

Tested the prettier

@IsaacIsrael
Copy link
Owner Author

Fix json and jsonc vscode setting

@IsaacIsrael
Copy link
Owner Author

Remove experimentalTernaries not available for this prettier version

@IsaacIsrael
Copy link
Owner Author

Add native folders to the prettierignore

@IsaacIsrael
Copy link
Owner Author

Create prettier:check and prettier:fix scripts

@IsaacIsrael
Copy link
Owner Author

Fix all prettier issues with prettier:fix

@IsaacIsrael IsaacIsrael linked a pull request Jan 12, 2025 that will close this issue
@IsaacIsrael IsaacIsrael reopened this Jan 12, 2025
@IsaacIsrael
Copy link
Owner Author

Run this command

npm init @eslint/config@latest

To initialize eslint (It will install some libraries and start the new flat configuration )

@IsaacIsrael
Copy link
Owner Author

Add to eslint.config

{
    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 .

@IsaacIsrael
Copy link
Owner Author

Add to eslint.config

 {
    ignores: ['*.config.*'],
 }

To ignore files like babel.config.js , metro.config.js , jest.config.js , eslint.config.mjs

@IsaacIsrael
Copy link
Owner Author

You can test your prettier config in this playground

@IsaacIsrael
Copy link
Owner Author

You can test your eslint rules in this playground

@IsaacIsrael
Copy link
Owner Author

I read this article to decide what it is the best approach to integrated prettier and eslint

@IsaacIsrael
Copy link
Owner Author

Add and config eslint-config-prettier as here

@IsaacIsrael
Copy link
Owner Author

Test prettier and lint conflicts with eslint-config-prettier

@IsaacIsrael
Copy link
Owner Author

IsaacIsrael commented Jan 13, 2025

Follow this article to set eslint rules

@IsaacIsrael
Copy link
Owner Author

IsaacIsrael commented Jan 13, 2025

Add and config eslint-plugin-react-hooks

like this comment and eslint tutorial

@IsaacIsrael
Copy link
Owner Author

Test eslint-plugin-react-hooks

@IsaacIsrael
Copy link
Owner Author

IsaacIsrael commented Jan 13, 2025

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 }],
}

@IsaacIsrael
Copy link
Owner Author

Test this rules

@IsaacIsrael
Copy link
Owner Author

Found this library for project architecture

@IsaacIsrael
Copy link
Owner Author

Add eslint-plugin-perfectionist to the project

@IsaacIsrael
Copy link
Owner Author

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',
        },
      ],
    }

@IsaacIsrael
Copy link
Owner Author

Add eslint-plugin-react-native to the project

@IsaacIsrael
Copy link
Owner Author

IsaacIsrael commented Jan 21, 2025

Disable this rules

{
     'react-native/sort-styles': 'off',
     'react-native/no-raw-text': 'off',
}

@IsaacIsrael IsaacIsrael linked a pull request Jan 21, 2025 that will close this issue
@IsaacIsrael
Copy link
Owner Author

Create eslint:check and eslint:fix scripts

@IsaacIsrael
Copy link
Owner Author

Fix all eslint issues

@IsaacIsrael
Copy link
Owner Author

Refactoring the lint script to do prettier and eslint

@IsaacIsrael IsaacIsrael reopened this Jan 23, 2025
@IsaacIsrael
Copy link
Owner Author

Use conventionalcommits to lint the commit message

@IsaacIsrael
Copy link
Owner Author

IsaacIsrael commented Jan 23, 2025

Add gitmoji-commit-workflow to lint the commit

@IsaacIsrael
Copy link
Owner Author

IsaacIsrael commented Jan 23, 2025

Install

@IsaacIsrael
Copy link
Owner Author

Test

 echo "teste" | commitlint

@IsaacIsrael
Copy link
Owner Author

Install

@IsaacIsrael IsaacIsrael reopened this Jan 24, 2025
This was linked to pull requests Jan 25, 2025
@IsaacIsrael
Copy link
Owner Author

Remove all commit lint with emoji

@IsaacIsrael
Copy link
Owner Author

Create .czrc file

@IsaacIsrael
Copy link
Owner Author

create type:check script

@IsaacIsrael
Copy link
Owner Author

IsaacIsrael commented Jan 25, 2025

Add type:check, eslint:check and prettier:check to lint-staged

type:check run to all project due to the typescript configuration

@IsaacIsrael
Copy link
Owner Author

Create action to run lint typescript, eslint, prettier and commitlint

@IsaacIsrael IsaacIsrael added the documentation Improvements or additions to documentation label Feb 17, 2025
@IsaacIsrael IsaacIsrael linked a pull request Feb 18, 2025 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment