0.9.18-beta • Published 4 months ago

@aidc-toolkit/dev v0.9.18-beta

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
4 months ago

Development Package

The AIDC Toolkit dev package contains development artefacts only; it is not intended to be used as anything other than a development dependency.

TypeScript Configuration

All AIDC Toolkit packages are expected to be built the same way, which implies that they all have the same TypeScript configuration. This is supported by the tsconfig.json file in this package. All changes should be managed in that file, with other packages declaring their own tsconfig.json as follows:

{
  "extends": "@aidc-toolkit/dev/tsconfig.json"
}

ESLint Configuration

All AIDC Toolkit packages are expected to follow a common coding style (enforced by ESLint), which implies that they all have the same ESLint configuration. This is supported by the eslint.config.template.ts file in this package. All changes should be managed in that file, with other packages declaring their own eslint.config.js file as follows:

import tseslint from "typescript-eslint";
import js from "@eslint/js";
import stylistic from "@stylistic/eslint-plugin";
import jsdoc from "eslint-plugin-jsdoc";
import esLintConfigLove from "eslint-config-love";
import { esLintConfigAIDCToolkit } from "@aidc-toolkit/dev";

export default tseslint.config(
    {
        ignores: ["eslint.config.js", "dist"]
    },
    js.configs.recommended,
    ...tseslint.configs.strictTypeChecked,
    stylistic.configs["recommended-flat"],
    jsdoc.configs["flat/recommended-typescript"],
    esLintConfigLove,
    esLintConfigAIDCToolkit
);

The ESLint configuration requires the installation of the following development dependencies:

  • @eslint/js
  • @stylistic/eslint-plugin
  • eslint-config-love
  • eslint-plugin-jsdoc
  • typescript-eslint
0.9.17-beta

8 months ago

0.9.14-beta

8 months ago

0.9.12-beta

8 months ago

0.9.4

11 months ago

0.9.6-beta

11 months ago

0.9.3

11 months ago

0.9.6

11 months ago

0.9.5

11 months ago

0.9.15-beta

8 months ago

0.9.11-beta

9 months ago

0.9.8-beta

10 months ago

0.9.13-beta

8 months ago

0.9.18-beta

4 months ago

0.9.7-beta

10 months ago

0.9.9-beta

10 months ago

0.9.2

11 months ago

0.9.10-beta

10 months ago

0.9.16-beta

8 months ago

0.9.1

1 year ago

0.9.0

1 year ago

0.0.1

1 year ago