mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
a6b0d63afb
Co-authored-by: Juan Picado <juanpicado19@gmail.com>
22 lines
499 B
JavaScript
22 lines
499 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
project: './tsconfig.json'
|
|
},
|
|
plugins: [
|
|
'@typescript-eslint',
|
|
],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'airbnb-typescript'
|
|
],
|
|
rules: {
|
|
"@typescript-eslint/no-use-before-define": "warn",
|
|
"max-len": "off",
|
|
"react/jsx-one-expression-per-line": "off",
|
|
"react/prop-types": "off",
|
|
"react/require-default-props": "off",
|
|
}
|
|
}; |