@nighttrax/eslint-config-base
Version:
NiGhTTraX's ESLint base config
24 lines (16 loc) • 427 B
Markdown
This is my base ESLint config for TS projects. The config can be used standalone, but its main purpose is to be extended by [eslint-config-ts](../ts) and [eslint-config-tsx](../tsx).
```sh
npm i eslint eslint-plugin-import eslint-plugin-prettier
npm i @nighttrax/eslint-config-base
```
```js
module.exports = {
'root': true,
'extends': [
'@nighttrax/eslint-config-base'
]
};
```