-
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
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
},
};