mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
3ad519f0c2
* chore: upload gatsby website * chore: update header * chore: add background header * chore: add ci for website * Update ci-website.yml * chore: update patch mach ci * chore: update ci settings * chore: update docker version
41 lines
732 B
Plaintext
41 lines
732 B
Plaintext
{
|
|
"extends": [
|
|
"@verdaccio",
|
|
"plugin:react/recommended",
|
|
"plugin:jest/recommended",
|
|
"plugin:prettier/recommended",
|
|
"plugin:verdaccio/recommended",
|
|
"plugin:jsx-a11y/recommended",
|
|
"plugin:import/typescript"
|
|
],
|
|
"plugins": [
|
|
"react",
|
|
"jest",
|
|
"prettier",
|
|
"verdaccio",
|
|
"jsx-a11y",
|
|
"react-hooks",
|
|
"import"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"allowImportExportEverywhere": true
|
|
},
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"rules": {
|
|
"react/prop-types": 0
|
|
},
|
|
"settings": {
|
|
"react": {
|
|
"version": "detect"
|
|
},
|
|
"import/resolver": {
|
|
"node": {
|
|
"extensions": [".js", ".jsx", ".ts", ".tsx"]
|
|
}
|
|
}
|
|
}
|
|
}
|