@modusoperandi/eslint-config
v3.0.3
Published
Module containing the lint configuring for MO
Readme
Modus Operandi eslint-config
Description
This package contains the core coding standards for all MO apps.
Requirements
Before you can start using the eslint-config your application must have the following dev-dependencies associated with your apps version of Angular:
eslintangular-eslint(for Angular projects only)
Installation & Setup
- Run
npm i -D @modusoperandi/eslint-configto install the package as a dev dependency. If using Angular, follow the Angular ESLint instructions to enable Linting with ESLint, and make sureangular-eslintis installed.- Remove all eslint dependencies aside from eslint and angular-lint from your dev-dependencies.
- Copy
eslint.config.cjsand.prettierrc.ymlfrom this repo to the root of your project, and remove excess comments. - Change
moto the prefix of your Angular app/lib, or remove that line if this isn't an Angular project. - Run
ng lint(Angular) oreslint(Basic) in a script to ensure functionality. Add--max-warnings=0to make these rules strict, or--quiteto ignore warnings.
You may use a different Prittier config for your project, but the one in this project is recommended. It is recommended to limit edits to the prettierrc to compatibility reasons, and to respect the stylistic defaults.
Optional
- Add the .gitattributes from this project to your project to prevent End Of Line (EOL) issues in your repo.
- If you are using VSCode, Make sure you have the following extensions that help with these rules.
- ESLint (you may need to turn on "use flat config" setting)
- Angular Language Service
- SonarLint
- (for strict) Prettier - Code formatter
Migrating from v1 to v2
- Do steps 2 + 3 from the setup.
- Change 'mo' in the config file to the prefix you are using for your Angular app/lib if necessary. The prefix overrides are part of the shared config.
- If you have any rule overrides aside from the 2 Angular prefix rules, add them as shown here in accordence with the new ESLint flat config.
- Delete your old eslint config file.
Migrating from v2 to v3
- Config is now required and requires specifying a copyright header, with an optional project license.
- For the license value, if provided, it is recommended to use the short name of the license, or
See LICENSE file at root of project. - If not provided,
@licensewill still be included in the header as some compilers know to preserve the header comment when it is present. (ex, the Angular compiler)
Usage Notes
console.log(...)should be avoided. These are usually forgotten debug statements, and when they’re not, their overuse can spam the logs hiding actual errors. It is recommended to use ngx-logger instead so that logging behavior can be controlled at the app layer.console.warn(...)andconsole.error(...)are ok to use though if necessary.- Mocking libraries are designed to be typescript friendly. If a mock library ever returns "any" as a type, that usually means you forgot to specify a type somewhere.
() => {}is commonly used for a "noop" function. However,{}looks like an empty object, and semantically empty function blocks are usually an unintended bug. use() => undefinedinstead to make the noop clear, or() => ({})if you intended to return an empty object.- import/no-extraneous-dependencies means you're importing something that isn't declared in your package.json, and my not get installed if your dependencies of dependencies change. These packages need to be added to your peerDependencies or dependencies to protect you and your consumers.
- The set of import rules that restrict absolute paths, cycles, and useless path segments are there to protect your code base from a variety of edge cases that can cause compile/runtime issues for you or your consumers.
- "http://" can always be avoided. For URLs, you should always default to "https". For URIs like xml schemes, you should use an imported constant or parameter instead to avoid typos.
- The header config requires file headers to start with
@licenseand@copyright, but you can include addition things after that like@file. - For the header copyright config, you can use
const fs = require('node:fs')(orconst fs = require('fs')which is friendlier to Visual Studio Code) to load the copyright text from a file withfs.readFileSync('./COPYRIGHT.md', 'utf-8'). - For strict mode, it is recommended to use more performant/safe regex libraries for non-trivial regex to avoid ReDOS (Regex Denial Of Service) issues.
