Magickbase / shaping

MIT License
2 stars 2 forks source link

Preset of lint used in JavaScript Projects #49

Open Keith-CY opened 1 year ago

Keith-CY commented 1 year ago

There're various JavaScript projects maintained by our team, and they follow different rules due to project history, team preference, etc.

To improve consistency, we'd better define a preset rule configuration as the initial one used in all JavaScript projects.

Do you have any suggestions? @Magickbase/developers

yanguoyu commented 1 year ago
  1. prettier https://prettier.io/docs/en/options.html

    {
    printWidth: 120,
    // Specify the number of spaces per indentation-level.
    tabWidth: 2,
    // Indent lines with tabs instead of spaces.
    useTabs: true,
    // Only add semicolons at the beginning of lines that [may introduce ASI failures](https://prettier.io/docs/en/rationale.html#semicolons).
    semi: false,
    // Use single quotes instead of double quotes.
    singleQuote: true,
    // Trailing commas where valid in ES5 (objects, arrays, etc.). No trailing commas in type parameters in TypeScript.
    trailingComma: 'es5',
    // Print spaces between brackets in object literals. 👍 { foo: bar } 👎 {foo: bar}
    bracketSpacing: true,
    👍/**
    <button
      onClick={this.handleClick}
    >
      Click Here
    </button>
    */
    👎
    <button
      onClick={this.handleClick}>
      Click Here
    </button>
    */
    bracketSameLine: false,
    // 👍 x => x   👎 (x) => x
    arrowParens: false,
    endOfLine: 'lf'
    }
  2. eslint https://eslint.org/docs/latest/rules/ Eslint rules are so many so we can extend other rules and change some if we need.

  3. style-lint https://stylelint.io/user-guide/rules We can use its recommend rules https://www.npmjs.com/package/stylelint-config-recommended and change some if we need.

  4. commit-lint https://commitlint.js.org/#/

    
    import type {UserConfig} from '@commitlint/types';
    import { RuleConfigSeverity } from "@commitlint/types";

const Configuration: UserConfig = { /*

module.exports = Configuration;

WhiteMinds commented 1 year ago

We can establish a repository to implement packages like @magickbase/tools and place common configuration files such as prettierrc.js, eslintrc.js inside it. Then, these configurations can be imported into the projects that need to use them, similar to the following example:

// .prettierrc.js
module.exports = {
  ...require('@magickbase/tools/prettierrc'),
  // other config
}

Reaching a consensus on a good solution may take a long time and involve significant differences of opinion. Therefore, we can start by incorporating the rules on which there is no disagreement into this repository and put them into practical use. This approach may facilitate the overall standardization and subsequent rule improvements.

// 👍 x => x 👎 (x) => x arrowParens: false,

I used to think the same way, but after referring to the explanation in https://prettier.io/docs/en/options.html#arrow-function-parentheses, I believe setting it to the default value 'always' might be better. Here's the quote:

At first glance, avoiding parentheses may look like a better choice because of less visual noise. However, when Prettier removes parentheses, it becomes harder to add type annotations, extra arguments or default values as well as making other changes. Consistent use of parentheses provides a better developer experience when editing real codebases, which justifies the default value for the option.

yanguoyu commented 1 year ago

IMO, Type Inference is a good feature with typescript. Should we set explicit-function-return-type error or warning? @Magickbase/developers https://github.com/Magickbase/neuron-public-issues/issues/140#issuecomment-1560565006

WhiteMinds commented 1 year ago

IMO, Type Inference is a good feature with typescript. Should we set explicit-function-return-type error or warning? @Magickbase/developers Magickbase/neuron-public-issues#140 (comment)

I lean towards setting it to 'error'. Explicitly setting the return value allows for more effective type checking and makes the return value of the function easier for code readers to understand.

Keith-CY commented 1 year ago

IMO, Type Inference is a good feature with typescript. Should we set explicit-function-return-type error or warning? @Magickbase/developers Magickbase/neuron-public-issues#140 (comment)

I lean towards setting it to 'error'. Explicitly setting the return value allows for more effective type checking and makes the return value of the function easier for code readers to understand.

My personal thought is to set external interfaces typed explicitly while leaving the internal ones inferred, it guarantees typesafe to users while keeping the flexibility of JavaScript.

Keith-CY commented 1 year ago

I'll collect prettier/eslint configurations from our projects here, and deduplicate them.

Once the checklist is ready, we can keep those controversial rules intact and expose the unanimous in the tools repo.