1
0
mirror of https://github.com/alrayyes/my-opinionated-gatsby-starter synced 2023-11-14 15:56:29 +00:00
my-opinionated-gatsby-starter/.eslintrc.json

17 lines
377 B
JSON
Raw Normal View History

2020-06-02 14:36:56 +00:00
{
"parser": "@typescript-eslint/parser",
2020-06-04 13:50:51 +00:00
"plugins": ["@typescript-eslint", "jest"],
2020-06-02 14:36:56 +00:00
"extends": [
"react-app",
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
2020-06-04 13:50:51 +00:00
"plugin:prettier/recommended",
"prettier/@typescript-eslint",
"plugin:jest/recommended"
2020-06-02 14:36:56 +00:00
],
"rules": {
"react/prop-types": "off"
}
}