This is a TypeScript ESLint plugin that helps you adhere to DCI conventions. For more information about DCI (Data, Context and Interaction), read this introduction.
Use npm
or pnpm
to install the library and its required packages:
npm i -D eslint-plugin-dci-lint @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint typescript
pnpm i -D eslint-plugin-dci-lint @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint typescript
Add the dci-lint
plugin and the typescript parser to your .eslintrc
configuration file:
module.exports = {
root: true,
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:dci-lint/recommended",
],
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
rules: {
//"dci-lint/literal-role-contracts": "off"
},
};
In the project directory, you can run ESLint with npx eslint .
but while coding it's best to use it with a code editor, for example VS Code. This extension gives you linting as you type (or search for ESLint in the extensions panel).
A comprehensive tutorial series is available at https://blog.encodeart.dev/dci-tutorial-for-typescript-part-1.
These rules should not be turned off. Let me know if you have a good reason to do so.
Rule | Usage |
---|---|
dci-lint/atomic-role-binding |
All RoleMethods must be bound (assigned) in the same function. |
dci-lint/grouped-rolemethods |
RoleMethods must be grouped together, without unrelated code between them. |
dci-lint/no-this-in-context |
Disallows this in Contexts. |
dci-lint/private-role-access |
Private RoleMethods and Role contracts can only be accessed within their own Roles. |
These rules are optional but are set to warn
as default.
Rule | Usage |
---|---|
dci-lint/literal-role-contracts |
Role contracts should be defined as an object type, primitive type or an array (in bracket syntax). |
Turning this rule off can undermine the readability of the Context by requiring knowledge about types defined elsewhere in the code, but it can be convenient if you're working with a standardized API like the W3C web standards.
Additionally, a few other standard types are allowed as non-literal types for Roles:
Iterable
| Array
| Map
| Set
| Readonly
| NonNullable
| Awaited
These rules are optional and are disabled as default.
Rule | Usage |
---|---|
dci-lint/immutable-roles |
Enforces all Roles to be const . |
dci-lint/sorted-rolemethods |
RoleMethods must be placed in alphabetical order. |
Please dive into fulloo.info and its extensive documentation. The trygve manual on that site is a worthwhile read for any programmer regardless of skill level.
For VS Code, there are also some useful snippets in the typescript.json file in this repo. To use it:
File > Preferences > Configure User Snippets
You can now use the keywords "context", "role" and "rm" in .ts
files to quickly generate Contexts, Roles and RoleMethods.
Paste this code in a .ts
file to test if the plugin works with the linter. An error, "Accessing Role contract outside its own RoleMethods" should appear.
/**
* @DCI-context
*/
export function Test() {
const FirstRole = { name: "Test" };
function FirstRole_method() {
return FirstRole.name;
}
console.log(FirstRole.name); // Accessing Role contract outside its own RoleMethods.
return FirstRole_method();
}
Are best expressed as a Github issue here!
Thanks to the Typescript ESLint project for making this possible at all!
And as always, a big thanks to Trygve Reenskaug for inventing and James Coplien for continously furthering DCI over the years.