Skip to content
Snippets Groups Projects
  • Nathan Hertz's avatar
    ffcc0f03
    Beginnings of capability request status page: · ffcc0f03
    Nathan Hertz authored
    - Two new `npm` packages (not including deps): `eslint` (linter for TypeScript code) and `prettier` (multi-language web-stack code formatter)
    - New workspaces component: `capability-request` which is where the work for the page is being done
    ffcc0f03
    History
    Beginnings of capability request status page:
    Nathan Hertz authored
    - Two new `npm` packages (not including deps): `eslint` (linter for TypeScript code) and `prettier` (multi-language web-stack code formatter)
    - New workspaces component: `capability-request` which is where the work for the page is being done
.eslintrc.js 499 B
module.exports = {
  plugins: ["@typescript-eslint"],
  parser: "@typescript-eslint/parser", // Specifies the ESLint parser
  extends: [
    "plugin:prettier/recommended", // Uses the recommended rules from Prettier
    "plugin:@typescript-eslint/recommended", // Uses the recommended rules from @typescript-eslint/eslint-plugin
  ],
  parserOptions: {
    ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
    sourceType: "module", // Allows for the use of imports
  },
};