@tabianco/eslint-config-typescript
v1.1.0
Published
ESLint TypeScript config for Nuxt.js
Downloads
18
Readme
Nuxt ESLint Config (supports TypeScript)
ESlint config used for Nuxt.js.
Usage
Do you want to add the config to your own projects? There you go:
- Add this package to your devDependencies
$ npm i -D @tabianco/eslint-config-typescript
# or
$ yarn add -D @tabianco/eslint-config-typescript- Install
eslintif not already present locally or globally
$ npm i -D eslint
# or
$ yarn add -D eslintCreate a
.eslintrcfileExtend our config:
{
"extends": [
"@tabianco/eslint-config-typescript"
]
}Full example
A full example .eslintrc for a project with babel support:
Dont forget to
npm i -D babel-eslintoryarn add -D babel-eslint
{
"root": true,
"parserOptions": {
"parser": "babel-eslint",
"sourceType": "module"
},
"extends": [
"@tabianco/eslint-config-typescript"
]
}License
MIT - Tabian Co.
