1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-29 00:57:41 +02:00
portfolio/.eslintrc

34 lines
692 B
Plaintext
Raw Normal View History

2018-04-07 14:18:06 +02:00
{
2021-02-06 14:29:32 +01:00
"parser": "@babel/eslint-parser",
2018-05-04 19:42:17 +02:00
"extends": [
"eslint:recommended",
2018-05-12 22:14:53 +02:00
"plugin:react/recommended",
2019-12-14 13:38:46 +01:00
"plugin:testing-library/recommended",
"plugin:testing-library/react"
2018-05-04 19:42:17 +02:00
],
2019-12-14 13:38:46 +01:00
"plugins": ["react", "graphql", "prettier", "react-hooks", "testing-library"],
2018-04-07 14:18:06 +02:00
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"env": {
"browser": true,
2018-04-08 22:49:58 +02:00
"node": true,
2019-04-14 03:29:35 +02:00
"es6": true,
"jest": true
2018-04-07 14:18:06 +02:00
},
2018-05-12 22:14:53 +02:00
"rules": {
2019-05-25 13:26:57 +02:00
"prettier/prettier": "error",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
},
"settings": {
"react": {
2020-11-20 23:36:55 +01:00
"version": "detect"
}
2018-04-07 14:18:06 +02:00
}
}