You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
{
|
|
"extends": ["eslint:recommended", "google"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"plugins": ["prettier"],
|
|
"settings": {
|
|
"import/resolver": {
|
|
"node": {
|
|
"extensions": [".js", ".ts"],
|
|
"paths": ["src", "node_modules"]
|
|
}
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.ts"],
|
|
"rules": {
|
|
"react/prop-types": "off"
|
|
}
|
|
}
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-unused-vars": "off",
|
|
"@typescript-eslint/camelcase": [0],
|
|
"object-curly-newline": "off",
|
|
"jsx-a11y/media-has-caption": "off",
|
|
"no-underscore-dangle": "off",
|
|
"prettier/prettier": "error",
|
|
"@typescript-eslint/indent": "off",
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"import/extensions": "off",
|
|
"semi": "off",
|
|
"no-undef": "off",
|
|
"require-jsdoc": "off",
|
|
"no-unused-vars": "off",
|
|
"indent": "off",
|
|
"object-curly-spacing": "off",
|
|
"max-len": "off",
|
|
"operator-linebreak": "off",
|
|
"new-cap": "off",
|
|
"quote-props": "off",
|
|
"no-constant-condition": "off",
|
|
"prefer-rest-params": "off",
|
|
"no-unreachable": "off",
|
|
"no-trailing-spaces": "off"
|
|
}
|
|
}
|
|
|