@xerox/eslint-config Archived: Moved to monorepo xeroxinteractive/config
ESLint shareable configuration for Xerox projects.
- Install this config and eslint as a
devDependency
:
yarn add [email protected] @xerox/eslint-config --dev
# or
npm install [email protected] @xerox/eslint-config --save-dev
- Extend the base and any additional configs in your
.eslintrc
file (or just add aneslintConfig
entry to yourpackage.json
):
{
"extends": [
"@xerox",
"@xerox/eslint-config/typescript", // Optional
"@xerox/eslint-config/react" // Optional
]
}
The base eslint configuration i.e. "extends": ["@xerox"]
includes rules for Jest and Prettier, and some general preferences like linebreak-style.
The typescript eslint configuration i.e. "extends": ["@xerox/eslint-config/typescript"]
includes various TypeScript related rules, as well as swapping the default parser in order for eslint to work with TypeScript. You should call eslint using --ext .js,.ts
, add .jsx
and/or .tsx
if necessary. This also adds a JSDoc requirement for only TypeScript files, .js
and test.{js,ts}
files are excluded, this allows you to progressively convert from TS to JS without having to add JSdoc to all the old JS source. These JSDoc rules are setup to mimick TSDoc, eslint-plugin-tsdoc doesn't yet exist, so this is a workaround, try to follow the example set out here.
The react eslint configuration i.e. "extends": ["@xerox/eslint-config/react"]
enables jsx and includes the react reccomended settings from eslint-plugin-react, this sub-config needs some fleshing out.